Home
last modified time | relevance | path

Searched refs:Py_PRINT_RAW (Results 1 – 13 of 13) sorted by relevance

/third_party/python/Python/
Dpythonrun.c748 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()
Dtraceback.c497 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()
Derrors.c1283 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.c503 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()
Dbltinmodule.c1997 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()
Dsysmodule.c669 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/
Dfileobject.c131 if (flags & Py_PRINT_RAW) { in PyFile_WriteObject()
164 err = PyFile_WriteObject(v, f, Py_PRINT_RAW); in PyFile_WriteString()
Dobject.c292 if (flags & Py_PRINT_RAW) in PyObject_Print()
/third_party/python/Doc/c-api/
Dfile.rst93 .. index:: single: Py_PRINT_RAW
96 :const:`Py_PRINT_RAW`; if given, the :func:`str` of the object is written
Dobject.rst26 is :const:`Py_PRINT_RAW`; if given, the :func:`str` of the object is written
/third_party/python/Modules/_sqlite/
Dcache.c289 PyObject_Print(display_str, stdout, Py_PRINT_RAW); in pysqlite_cache_display()
/third_party/python/Include/
Dobject.h303 #define Py_PRINT_RAW 1 /* No string quotes etc. */ macro
/third_party/python/Modules/
D_threadmodule.c1424 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()