Lines Matching refs:stdout
10 - stdin, stdout, stderr: standard file objects
601 /* Write repr(o) to sys.stdout using sys.stdout.encoding and 'backslashreplace'
602 error handler. If sys.stdout has a buffer attribute, use
603 sys.stdout.buffer.write(encoded), otherwise redecode the string and use
604 sys.stdout.write(redecoded).
671 Print an object to sys.stdout and also save it in builtins._
700 outf = _PySys_GetAttr(tstate, &_Py_ID(stdout));
702 _PyErr_SetString(tstate, PyExc_RuntimeError, "lost sys.stdout");
708 /* repr(o) is not encodable to sys.stdout.encoding with
709 * sys.stdout.errors error handler (which is probably 'strict') */
2428 stdout -- standard output file object; used by print()\n\
2481 __stdout__ -- the original stdout; don't touch!\n\
2887 /* stdin/stdout/stderr are set in pylifecycle.c */
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;
3460 sys_write(&_Py_ID(stdout), stdout, format, va);
3503 sys_format(&_Py_ID(stdout), stdout, format, va);