Home
last modified time | relevance | path

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

12

/external/python/cpython3/Python/
Dtraceback.c387 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()
Dpythonrun.c586 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.c329 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()
Dbltinmodule.c1794 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()
Derrors.c988 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()
Dsysmodule.c146 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/
Dfile.rst65 .. index:: single: Py_PRINT_RAW
68 :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
/external/python/cpython3/Objects/
Dfileobject.c140 if (flags & Py_PRINT_RAW) { in PyFile_WriteObject()
173 err = PyFile_WriteObject(v, f, Py_PRINT_RAW); in PyFile_WriteString()
Dobject.c377 if (flags & Py_PRINT_RAW) in PyObject_Print()
/external/python/cpython2/Python/
D_warnings.c264 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()
Dpythonrun.c1135 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()
Dbltinmodule.c1677 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/
Dfile.rst169 .. index:: single: Py_PRINT_RAW
172 :const:`Py_PRINT_RAW`; if given, the :func:`str` of the object is written
Dobject.rst13 is :const:`Py_PRINT_RAW`; if given, the :func:`str` of the object is written
Dtypeobj.rst213 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/
Dcache.c241 PyObject_Print(display_str, stdout, Py_PRINT_RAW); in pysqlite_cache_display()
/external/python/cpython2/Modules/_sqlite/
Dcache.c256 PyObject_Print(display_str, stdout, Py_PRINT_RAW); in pysqlite_cache_display()
/external/python/cpython2/Objects/
Dfileobject.c2566 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()
Dobject.c302 if (flags & Py_PRINT_RAW) in internal_print()
309 ret = internal_print(s, fp, Py_PRINT_RAW, in internal_print()
Dcomplexobject.c436 if (flags & Py_PRINT_RAW) in complex_print()
Dfloatobject.c360 if (flags & Py_PRINT_RAW) in float_print()
/external/python/cpython2/Include/
Dobject.h536 #define Py_PRINT_RAW 1 /* No string quotes etc. */ macro
/external/python/cpython3/Include/
Dobject.h594 #define Py_PRINT_RAW 1 /* No string quotes etc. */ macro
/external/python/cpython2/Doc/extending/
Dnewtypes.rst1082 There is a flags argument and one flag, :const:`Py_PRINT_RAW`, and it suggests
1094 if (flags & Py_PRINT_RAW) {

12