Home | History | Annotate | Download | only in Python

Lines Matching defs:stdout

10 - stdin, stdout, stderr: standard file objects
46 _Py_IDENTIFIER(stdout);
100 /* Write repr(o) to sys.stdout using sys.stdout.encoding and 'backslashreplace'
101 error handler. If sys.stdout has a buffer attribute, use
102 sys.stdout.buffer.write(encoded), otherwise redecode the string and use
103 sys.stdout.write(redecoded).
189 PyErr_SetString(PyExc_RuntimeError, "lost sys.stdout");
194 /* repr(o) is not encodable to sys.stdout.encoding with
195 * sys.stdout.errors error handler (which is probably 'strict') */
221 "Print an object to sys.stdout and also save it in builtins._\n"
1581 stdout -- standard output file object; used by print()\n\
1634 __stdout__ -- the original stdout; don't touch!\n\
1935 /* stdin/stdout/stderr are set in pylifecycle.c */
2330 /* APIs to write to sys.stdout or sys.stderr using a printf-like interface.
2336 The first function writes to sys.stdout; the second to sys.stderr. When
2337 there is a problem, they write to the real (C level) stdout or stderr;
2387 sys_write(&PyId_stdout, stdout, format, va);
2429 sys_format(&PyId_stdout, stdout, format, va);