Searched refs:Py_PRINT_RAW (Results 1 – 13 of 13) sorted by relevance
/third_party/python/Python/ |
D | pythonrun.c | 748 PyFile_WriteObject(value, sys_stderr, Py_PRINT_RAW); in _Py_HandleSystemExit() 750 PyObject_Print(value, 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 | 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 | errors.c | 1283 if (PyFile_WriteObject(err_msg, file, Py_PRINT_RAW) < 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 | _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 | 1997 Py_PRINT_RAW); 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() 746 if (PyFile_WriteObject(newline, outf, Py_PRINT_RAW) != 0) in sys_displayhook()
|
/third_party/python/Objects/ |
D | fileobject.c | 131 if (flags & Py_PRINT_RAW) { in PyFile_WriteObject() 164 err = PyFile_WriteObject(v, f, Py_PRINT_RAW); in PyFile_WriteString()
|
D | object.c | 292 if (flags & Py_PRINT_RAW) in PyObject_Print()
|
/third_party/python/Doc/c-api/ |
D | file.rst | 93 .. index:: single: Py_PRINT_RAW 96 :const:`Py_PRINT_RAW`; if given, the :func:`str` of the object is written
|
D | object.rst | 26 is :const:`Py_PRINT_RAW`; if given, the :func:`str` of the object is written
|
/third_party/python/Modules/_sqlite/ |
D | cache.c | 289 PyObject_Print(display_str, stdout, Py_PRINT_RAW); in pysqlite_cache_display()
|
/third_party/python/Include/ |
D | object.h | 303 #define Py_PRINT_RAW 1 /* No string quotes etc. */ macro
|
/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()
|