/external/python/cpython3/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
|
/external/python/cpython3/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 | 272 if (flags & Py_PRINT_RAW) in PyObject_Print()
|
/external/python/cpython3/Python/ |
D | traceback.c | 496 err = PyFile_WriteObject(lineobj, f, Py_PRINT_RAW); in _Py_DisplaySourceLine() 515 err = PyFile_WriteObject(line, f, Py_PRINT_RAW); in tb_displayline() 539 int err = PyFile_WriteObject(line, f, Py_PRINT_RAW); in tb_print_line_repeated()
|
D | _warnings.c | 509 if (PyFile_WriteObject(filename, f_stderr, Py_PRINT_RAW) < 0) in show_warning() 513 if (PyFile_WriteObject(name, f_stderr, Py_PRINT_RAW) < 0) in show_warning() 517 if (PyFile_WriteObject(text, f_stderr, Py_PRINT_RAW) < 0) in show_warning() 547 PyFile_WriteObject(sourceline, f_stderr, Py_PRINT_RAW); in show_warning()
|
D | pythonrun.c | 669 PyFile_WriteObject(value, sys_stderr, Py_PRINT_RAW); in _Py_HandleSystemExit() 671 PyObject_Print(value, stderr, Py_PRINT_RAW); in _Py_HandleSystemExit() 850 PyFile_WriteObject(line, f, Py_PRINT_RAW); in print_exception() 889 err = PyFile_WriteObject(moduleName, f, Py_PRINT_RAW); in print_exception() 915 err = PyFile_WriteObject(s, f, Py_PRINT_RAW); in print_exception()
|
D | errors.c | 1254 if (PyFile_WriteObject(err_msg, file, Py_PRINT_RAW) < 0) { in write_unraisable_exc_file() 1278 if (PyFile_WriteObject(err_msg, file, Py_PRINT_RAW) < 0) { in write_unraisable_exc_file() 1316 if (PyFile_WriteObject(moduleName, file, Py_PRINT_RAW) < 0) { in write_unraisable_exc_file() 1344 if (PyFile_WriteObject(exc_value, file, Py_PRINT_RAW) < 0) { in write_unraisable_exc_file()
|
D | bltinmodule.c | 1879 Py_PRINT_RAW); in builtin_print() 1883 err = PyFile_WriteObject(args[i], file, Py_PRINT_RAW); in builtin_print() 1891 err = PyFile_WriteObject(end, file, Py_PRINT_RAW); in builtin_print() 2116 if (PyFile_WriteObject(prompt, fout, Py_PRINT_RAW) != 0) in builtin_input_impl()
|
D | sysmodule.c | 646 if (PyFile_WriteObject(escaped_str, outf, Py_PRINT_RAW) != 0) { in sys_displayhook_unencodable() 723 if (PyFile_WriteObject(newline, outf, Py_PRINT_RAW) != 0) in sys_displayhook()
|
/external/python/cpython2/Python/ |
D | _warnings.c | 270 PyFile_WriteObject(filename, f_stderr, Py_PRINT_RAW); in show_warning() 272 PyFile_WriteObject(name, f_stderr, Py_PRINT_RAW); in show_warning() 274 PyFile_WriteObject(text, f_stderr, Py_PRINT_RAW); in show_warning()
|
D | pythonrun.c | 1144 PyFile_WriteObject(value, sys_stderr, Py_PRINT_RAW); in handle_system_exit() 1146 PyObject_Print(value, stderr, Py_PRINT_RAW); in handle_system_exit() 1305 err = PyFile_WriteObject(exception, f, Py_PRINT_RAW); in PyErr_Display() 1320 err = PyFile_WriteObject(s, f, Py_PRINT_RAW); in PyErr_Display()
|
D | bltinmodule.c | 1678 Py_PRINT_RAW); in builtin_print() 1681 Py_PRINT_RAW); in builtin_print() 1686 Py_PRINT_RAW); in builtin_print() 1692 err = PyFile_WriteObject(newline, file, Py_PRINT_RAW); in builtin_print() 1694 err = PyFile_WriteObject(end, file, Py_PRINT_RAW); in builtin_print() 2099 if (PyFile_WriteObject(v, fout, Py_PRINT_RAW) != 0) in builtin_raw_input()
|
/external/python/cpython2/Doc/c-api/ |
D | file.rst | 169 .. index:: single: Py_PRINT_RAW 172 :const:`Py_PRINT_RAW`; if given, the :func:`str` of the object is written
|
D | object.rst | 13 is :const:`Py_PRINT_RAW`; if given, the :func:`str` of the object is written
|
D | typeobj.rst | 213 bit currently defined is :const:`Py_PRINT_RAW`. When the :const:`Py_PRINT_RAW` 215 would format it; when the :const:`Py_PRINT_RAW` flag bit is clear, the instance
|
/external/python/cpython3/Modules/_sqlite/ |
D | cache.c | 247 PyObject_Print(display_str, stdout, Py_PRINT_RAW); in pysqlite_cache_display()
|
/external/python/cpython2/Modules/_sqlite/ |
D | cache.c | 256 PyObject_Print(display_str, stdout, Py_PRINT_RAW); in pysqlite_cache_display()
|
/external/python/cpython3/Include/ |
D | object.h | 279 #define Py_PRINT_RAW 1 /* No string quotes etc. */ macro
|
/external/python/cpython3/Modules/ |
D | _threadmodule.c | 1369 if (PyFile_WriteObject(name, file, Py_PRINT_RAW) < 0) { in thread_excepthook_file() 1379 if (PyFile_WriteObject(str, file, Py_PRINT_RAW) < 0) { in thread_excepthook_file()
|
/external/python/cpython2/Include/ |
D | object.h | 536 #define Py_PRINT_RAW 1 /* No string quotes etc. */ macro
|
/external/python/cpython2/Objects/ |
D | fileobject.c | 2611 if ((flags & Py_PRINT_RAW) && in PyFile_WriteObject() 2633 if (flags & Py_PRINT_RAW) { in PyFile_WriteObject() 2690 err = PyFile_WriteObject(v, f, Py_PRINT_RAW); in PyFile_WriteString()
|
D | object.c | 302 if (flags & Py_PRINT_RAW) in internal_print() 309 ret = internal_print(s, fp, Py_PRINT_RAW, in internal_print()
|
D | complexobject.c | 436 if (flags & Py_PRINT_RAW) in complex_print()
|
D | floatobject.c | 359 if (flags & Py_PRINT_RAW) in float_print()
|