/third_party/python/Include/ |
D | fileobject.h | 15 PyAPI_FUNC(int) PyFile_WriteObject(PyObject *, PyObject *, int);
|
/third_party/python/Python/ |
D | pythonrun.c | 748 PyFile_WriteObject(value, sys_stderr, Py_PRINT_RAW); in _Py_HandleSystemExit() 932 PyFile_WriteObject(line, f, Py_PRINT_RAW); in print_exception() 980 err = PyFile_WriteObject(modulename, f, Py_PRINT_RAW); in print_exception() 993 err = PyFile_WriteObject(qualname, f, Py_PRINT_RAW); in print_exception() 1012 err = PyFile_WriteObject(s, f, Py_PRINT_RAW); in print_exception() 1024 err = PyFile_WriteObject(suggestions, f, Py_PRINT_RAW); in print_exception()
|
D | errors.c | 1283 if (PyFile_WriteObject(err_msg, file, Py_PRINT_RAW) < 0) { in write_unraisable_exc_file() 1296 if (PyFile_WriteObject(obj, file, 0) < 0) { in write_unraisable_exc_file() 1307 if (PyFile_WriteObject(err_msg, file, Py_PRINT_RAW) < 0) { in write_unraisable_exc_file() 1338 if (PyFile_WriteObject(modulename, file, Py_PRINT_RAW) < 0) { in write_unraisable_exc_file() 1361 if (PyFile_WriteObject(qualname, file, Py_PRINT_RAW) < 0) { in write_unraisable_exc_file() 1372 if (PyFile_WriteObject(exc_value, file, Py_PRINT_RAW) < 0) { in write_unraisable_exc_file()
|
D | traceback.c | 497 err = PyFile_WriteObject(lineobj, f, Py_PRINT_RAW); in _Py_DisplaySourceLine() 516 err = PyFile_WriteObject(line, f, Py_PRINT_RAW); in tb_displayline() 540 int err = PyFile_WriteObject(line, f, Py_PRINT_RAW); in tb_print_line_repeated()
|
D | _warnings.c | 503 if (PyFile_WriteObject(filename, f_stderr, Py_PRINT_RAW) < 0) in show_warning() 507 if (PyFile_WriteObject(name, f_stderr, Py_PRINT_RAW) < 0) in show_warning() 511 if (PyFile_WriteObject(text, f_stderr, Py_PRINT_RAW) < 0) in show_warning() 541 PyFile_WriteObject(sourceline, f_stderr, Py_PRINT_RAW); in show_warning()
|
D | bltinmodule.c | 1996 err = PyFile_WriteObject(sep, file, in builtin_print() 2001 err = PyFile_WriteObject(args[i], file, Py_PRINT_RAW); in builtin_print() 2009 err = PyFile_WriteObject(end, file, Py_PRINT_RAW); in builtin_print() 2234 if (PyFile_WriteObject(prompt, fout, Py_PRINT_RAW) != 0) in builtin_input_impl()
|
D | sysmodule.c | 669 if (PyFile_WriteObject(escaped_str, outf, Py_PRINT_RAW) != 0) { in sys_displayhook_unencodable() 726 if (PyFile_WriteObject(o, outf, 0) != 0) { in sys_displayhook() 746 if (PyFile_WriteObject(newline, outf, Py_PRINT_RAW) != 0) in sys_displayhook()
|
/third_party/python/Objects/ |
D | fileobject.c | 119 PyFile_WriteObject(PyObject *v, PyObject *f, int flags) in PyFile_WriteObject() function 164 err = PyFile_WriteObject(v, f, Py_PRINT_RAW); in PyFile_WriteString()
|
/third_party/python/Doc/c-api/ |
D | file.rst | 91 .. c:function:: int PyFile_WriteObject(PyObject *obj, PyObject *p, int flags)
|
/third_party/python/Modules/ |
D | _threadmodule.c | 1424 if (PyFile_WriteObject(name, file, Py_PRINT_RAW) < 0) { in thread_excepthook_file() 1434 if (PyFile_WriteObject(str, file, Py_PRINT_RAW) < 0) { in thread_excepthook_file()
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 866 PyFile_WriteObject:int::: 867 PyFile_WriteObject:PyObject*:obj:0: 868 PyFile_WriteObject:PyObject*:p:0: 869 PyFile_WriteObject:int:flags::
|
D | stable_abi.dat | 265 function,PyFile_WriteObject,3.2,
|
/third_party/python/PC/ |
D | python3dll.c | 261 EXPORT_FUNC(PyFile_WriteObject)
|
/third_party/python/Misc/ |
D | stable_abi.txt | 724 function PyFile_WriteObject
|
D | HISTORY | 24124 - PyFile_WriteObject now passes Unicode objects to the file's write
|
/third_party/python/Tools/c-analyzer/ |
D | TODO | 370 Objects/fileobject.c:PyFile_WriteObject():PyId_write _Py_IDENTIFIER(write)
|
/third_party/python/Tools/c-analyzer/cpython/ |
D | ignored.tsv | 1916 Objects/fileobject.c PyFile_WriteObject PyId_write -
|