/external/python/cpython3/Python/ |
D | traceback.c | 387 err = PyFile_WriteObject(lineobj, f, Py_PRINT_RAW); in _Py_DisplaySourceLine() 406 err = PyFile_WriteObject(line, f, Py_PRINT_RAW); in tb_displayline() 443 err = PyFile_WriteObject(line, f, Py_PRINT_RAW); in tb_printinternal() 465 err = PyFile_WriteObject(line, f, Py_PRINT_RAW); in tb_printinternal()
|
D | pythonrun.c | 586 PyFile_WriteObject(value, sys_stderr, Py_PRINT_RAW); in handle_system_exit() 588 PyObject_Print(value, stderr, Py_PRINT_RAW); in handle_system_exit() 717 PyFile_WriteObject(line, f, Py_PRINT_RAW); in print_exception() 756 err = PyFile_WriteObject(moduleName, f, Py_PRINT_RAW); in print_exception() 782 err = PyFile_WriteObject(s, f, Py_PRINT_RAW); in print_exception()
|
D | _warnings.c | 329 if (PyFile_WriteObject(filename, f_stderr, Py_PRINT_RAW) < 0) in show_warning() 333 if (PyFile_WriteObject(name, f_stderr, Py_PRINT_RAW) < 0) in show_warning() 337 if (PyFile_WriteObject(text, f_stderr, Py_PRINT_RAW) < 0) in show_warning() 367 PyFile_WriteObject(sourceline, f_stderr, Py_PRINT_RAW); in show_warning()
|
D | bltinmodule.c | 1794 Py_PRINT_RAW); in builtin_print() 1799 Py_PRINT_RAW); in builtin_print() 1807 err = PyFile_WriteObject(end, file, Py_PRINT_RAW); in builtin_print() 2017 if (PyFile_WriteObject(prompt, fout, Py_PRINT_RAW) != 0) in builtin_input_impl()
|
D | errors.c | 988 if (PyFile_WriteObject(moduleName, f, Py_PRINT_RAW) < 0) in PyErr_WriteUnraisable() 1006 if (PyFile_WriteObject(v, f, Py_PRINT_RAW) < 0) { in PyErr_WriteUnraisable()
|
D | sysmodule.c | 146 if (PyFile_WriteObject(escaped_str, outf, Py_PRINT_RAW) != 0) { in sys_displayhook_unencodable() 210 if (PyFile_WriteObject(newline, outf, Py_PRINT_RAW) != 0) in sys_displayhook()
|
/external/python/cpython3/Doc/c-api/ |
D | file.rst | 65 .. index:: single: Py_PRINT_RAW 68 :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 | 140 if (flags & Py_PRINT_RAW) { in PyFile_WriteObject() 173 err = PyFile_WriteObject(v, f, Py_PRINT_RAW); in PyFile_WriteString()
|
D | object.c | 377 if (flags & Py_PRINT_RAW) in PyObject_Print()
|
/external/python/cpython2/Python/ |
D | _warnings.c | 264 PyFile_WriteObject(filename, f_stderr, Py_PRINT_RAW); in show_warning() 266 PyFile_WriteObject(name, f_stderr, Py_PRINT_RAW); in show_warning() 268 PyFile_WriteObject(text, f_stderr, Py_PRINT_RAW); in show_warning()
|
D | pythonrun.c | 1135 PyFile_WriteObject(value, sys_stderr, Py_PRINT_RAW); in handle_system_exit() 1137 PyObject_Print(value, stderr, Py_PRINT_RAW); in handle_system_exit() 1296 err = PyFile_WriteObject(exception, f, Py_PRINT_RAW); in PyErr_Display() 1311 err = PyFile_WriteObject(s, f, Py_PRINT_RAW); in PyErr_Display()
|
D | bltinmodule.c | 1677 Py_PRINT_RAW); in builtin_print() 1680 Py_PRINT_RAW); in builtin_print() 1685 Py_PRINT_RAW); in builtin_print() 1691 err = PyFile_WriteObject(newline, file, Py_PRINT_RAW); in builtin_print() 1693 err = PyFile_WriteObject(end, file, Py_PRINT_RAW); in builtin_print() 2098 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 | 241 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/cpython2/Objects/ |
D | fileobject.c | 2566 if ((flags & Py_PRINT_RAW) && in PyFile_WriteObject() 2588 if (flags & Py_PRINT_RAW) { in PyFile_WriteObject() 2645 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 | 360 if (flags & Py_PRINT_RAW) in float_print()
|
/external/python/cpython2/Include/ |
D | object.h | 536 #define Py_PRINT_RAW 1 /* No string quotes etc. */ macro
|
/external/python/cpython3/Include/ |
D | object.h | 594 #define Py_PRINT_RAW 1 /* No string quotes etc. */ macro
|
/external/python/cpython2/Doc/extending/ |
D | newtypes.rst | 1082 There is a flags argument and one flag, :const:`Py_PRINT_RAW`, and it suggests 1094 if (flags & Py_PRINT_RAW) {
|