Searched refs:PyObject_Print (Results 1 – 11 of 11) sorted by relevance
/third_party/python/Modules/ |
D | xxmodule.c | 194 PyObject_Print(item, stdout, 0); in xx_bug()
|
/third_party/python/Modules/_sqlite/ |
D | cache.c | 289 PyObject_Print(display_str, stdout, Py_PRINT_RAW); in pysqlite_cache_display()
|
/third_party/python/Include/cpython/ |
D | object.h | 310 PyAPI_FUNC(int) PyObject_Print(PyObject *, FILE *, int);
|
/third_party/python/Objects/ |
D | object.c | 264 PyObject_Print(PyObject *op, FILE *fp, int flags) in PyObject_Print() function 398 (void)PyObject_Print(op, stderr, 0); in _PyObject_Dump() 1949 if (PyObject_Print(op, fp, 0) != 0) { in _Py_PrintReferences()
|
/third_party/python/Doc/c-api/ |
D | set.rst | 19 :c:func:`PyObject_Repr`, :c:func:`PyObject_IsTrue`, :c:func:`PyObject_Print`, and
|
D | object.rst | 22 .. c:function:: int PyObject_Print(PyObject *o, FILE *fp, int flags)
|
/third_party/python/Doc/data/ |
D | refcounts.dat | 1766 PyObject_Print:int::: 1767 PyObject_Print:PyObject*:o:0: 1768 PyObject_Print:FILE*:fp:: 1769 PyObject_Print:int:flags::
|
/third_party/python/Python/ |
D | pythonrun.c | 750 PyObject_Print(value, stderr, Py_PRINT_RAW); in _Py_HandleSystemExit()
|
D | ceval.c | 5374 if (PyObject_Print(v, stdout, 0) != 0) { in prtrace()
|
/third_party/python/Doc/extending/ |
D | extending.rst | 1022 PyObject_Print(item, stdout, 0); /* BUG! */ 1054 PyObject_Print(item, stdout, 0); 1078 PyObject_Print(item, stdout, 0); /* BUG! */
|
/third_party/python/Misc/NEWS.d/ |
D | 3.8.0a1.rst | 8867 Ensure that :c:func:`PyObject_Print` always returns ``-1`` on error. Patch
|