Lines Matching defs:stderr
10 - stdin, stdout, stderr: standard file objects
737 Handle an exception by displaying it with a traceback on sys.stderr.
1906 Print summary info to stderr about the state of pymalloc's structures.
1917 if (_PyObject_DebugMallocStats(stderr)) {
1918 fputc('\n', stderr);
1921 _PyObject_DebugTypeStats(stderr);
2429 stderr -- standard error object; used for error messages\n\
2482 __stderr__ -- the original stderr; don't touch!\n\
2489 excepthook() -- print an exception and its traceback to sys.stderr\n\
2887 /* stdin/stdout/stderr are set in pylifecycle.c */
3150 /* Set up a preliminary stderr printer until we have enough
3157 PyObject *pstderr = PyFile_NewStdPrinter(fileno(stderr));
3161 if (PyDict_SetItem(sysdict, &_Py_ID(stderr), pstderr) < 0) {
3172 return _PyStatus_ERR("can't set preliminary stderr");
3402 /* APIs to write to sys.stdout or sys.stderr using a printf-like interface.
3408 The first function writes to sys.stdout; the second to sys.stderr. When
3409 there is a problem, they write to the real (C level) stdout or stderr;
3470 sys_write(&_Py_ID(stderr), stderr, format, va);
3513 sys_format(&_Py_ID(stderr), stderr, format, va);