Home | History | Annotate | Download | only in Modules

Lines Matching refs:PUTS

29 #define PUTS(fd, str) _Py_write_noraise(fd, str, strlen(str))
342 PUTS(fd, "Fatal Python error: ");
343 PUTS(fd, handler->name);
344 PUTS(fd, "\n\n");
392 PUTS(fd, "Windows fatal exception: ");
396 case EXCEPTION_ACCESS_VIOLATION: PUTS(fd, "access violation"); break;
397 case EXCEPTION_FLT_DIVIDE_BY_ZERO: PUTS(fd, "float divide by zero"); break;
398 case EXCEPTION_FLT_OVERFLOW: PUTS(fd, "float overflow"); break;
399 case EXCEPTION_INT_DIVIDE_BY_ZERO: PUTS(fd, "int divide by zero"); break;
400 case EXCEPTION_INT_OVERFLOW: PUTS(fd, "integer overflow"); break;
401 case EXCEPTION_IN_PAGE_ERROR: PUTS(fd, "page error"); break;
402 case EXCEPTION_STACK_OVERFLOW: PUTS(fd, "stack overflow"); break;
404 PUTS(fd, "code 0x");
407 PUTS(fd, "\n\n");