Home
last modified time | relevance | path

Searched refs:PyObject_Print (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Modules/
Dxxmodule.c194 PyObject_Print(item, stdout, 0); in xx_bug()
/third_party/python/Modules/_sqlite/
Dcache.c289 PyObject_Print(display_str, stdout, Py_PRINT_RAW); in pysqlite_cache_display()
/third_party/python/Include/cpython/
Dobject.h310 PyAPI_FUNC(int) PyObject_Print(PyObject *, FILE *, int);
/third_party/python/Objects/
Dobject.c264 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/
Dset.rst19 :c:func:`PyObject_Repr`, :c:func:`PyObject_IsTrue`, :c:func:`PyObject_Print`, and
Dobject.rst22 .. c:function:: int PyObject_Print(PyObject *o, FILE *fp, int flags)
/third_party/python/Doc/data/
Drefcounts.dat1766 PyObject_Print:int:::
1767 PyObject_Print:PyObject*:o:0:
1768 PyObject_Print:FILE*:fp::
1769 PyObject_Print:int:flags::
/third_party/python/Python/
Dpythonrun.c750 PyObject_Print(value, stderr, Py_PRINT_RAW); in _Py_HandleSystemExit()
Dceval.c5374 if (PyObject_Print(v, stdout, 0) != 0) { in prtrace()
/third_party/python/Doc/extending/
Dextending.rst1022 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/
D3.8.0a1.rst8867 Ensure that :c:func:`PyObject_Print` always returns ``-1`` on error. Patch