Home
last modified time | relevance | path

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

12

/external/python/cpython3/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
/external/python/cpython3/Objects/
Dfileobject.c131 if (flags & Py_PRINT_RAW) { in PyFile_WriteObject()
164 err = PyFile_WriteObject(v, f, Py_PRINT_RAW); in PyFile_WriteString()
Dobject.c272 if (flags & Py_PRINT_RAW) in PyObject_Print()
/external/python/cpython3/Python/
Dtraceback.c496 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.c509 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()
Dpythonrun.c669 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()
Derrors.c1254 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()
Dbltinmodule.c1879 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()
Dsysmodule.c646 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.c270 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()
Dpythonrun.c1144 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()
Dbltinmodule.c1678 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/
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.c247 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/cpython3/Include/
Dobject.h279 #define Py_PRINT_RAW 1 /* No string quotes etc. */ macro
/external/python/cpython3/Modules/
D_threadmodule.c1369 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/
Dobject.h536 #define Py_PRINT_RAW 1 /* No string quotes etc. */ macro
/external/python/cpython2/Objects/
Dfileobject.c2611 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()
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.c359 if (flags & Py_PRINT_RAW) in float_print()

12