Home
last modified time | relevance | path

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

/external/python/cpython2/Doc/includes/
Dtypestruct.h9 printfunc tp_print; member
/external/python/cpython2/Modules/_sqlite/
Drow.c183 return (&PyTuple_Type)->tp_print(self->data, fp, flags); in pysqlite_row_print()
/external/python/cpython2/Include/
Dobject.h332 printfunc tp_print; member
/external/python/cpython2/Doc/c-api/
Dtypeobj.rst198 .. c:member:: printfunc PyTypeObject.tp_print
205 a string. These are also called when the type's :c:member:`~PyTypeObject.tp_print` field is
206 *NULL*. A type should never implement :c:member:`~PyTypeObject.tp_print` in a way that produces
210 ``int tp_print(PyObject *self, FILE *file, int flags)``. The *self* argument is
220 It is possible that the :c:member:`~PyTypeObject.tp_print` field will be deprecated. In any case,
221 it is recommended not to define :c:member:`~PyTypeObject.tp_print`, but instead to rely on
/external/python/cpython2/Objects/
Dobject.c300 else if (Py_TYPE(op)->tp_print == NULL) { in internal_print()
315 ret = (*Py_TYPE(op)->tp_print)(op, fp, flags); in internal_print()
Dtypeobject.c4042 COPYSLOT(tp_print);
6038 TPSLOT("__str__", tp_print, NULL, NULL, ""),
6039 TPSLOT("__repr__", tp_print, NULL, NULL, ""),
/external/python/cpython2/Modules/
D_collectionsmodule.c1594 sts = PyDict_Type.tp_print((PyObject *)dd, fp, 0); in defdict_print()
/external/python/cpython2/Doc/extending/
Dnewtypes.rst87 0, /* tp_print */
1047 printfunc tp_print;
1560 function you want (for example, ``tp_print`` or ``tp_compare``). You will find
/external/python/cpython3/Doc/whatsnew/
D3.9.rst1382 * The ``tp_print`` slot of :ref:`PyTypeObject <type-structs>` has been removed.
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst715 Before version 3.8, this slot was named ``tp_print``.
/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst580 PyObject_Print() does the right thing along with various tp_print