Home
last modified time | relevance | path

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

/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()
Dceval.c1981 err = PyFile_WriteObject(v, w, Py_PRINT_RAW); in PyEval_EvalFrameEx()
/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/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()
Dstringobject.c870 if (flags & Py_PRINT_RAW) { in string_print()
/external/python/cpython2/Include/
Dobject.h536 #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) {