Searched refs:tp_print (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython2/Doc/includes/ |
D | typestruct.h | 9 printfunc tp_print; member
|
/external/python/cpython2/Modules/_sqlite/ |
D | row.c | 183 return (&PyTuple_Type)->tp_print(self->data, fp, flags); in pysqlite_row_print()
|
/external/python/cpython2/Include/ |
D | object.h | 332 printfunc tp_print; member
|
/external/python/cpython2/Doc/c-api/ |
D | typeobj.rst | 198 .. 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/ |
D | object.c | 300 else if (Py_TYPE(op)->tp_print == NULL) { in internal_print() 315 ret = (*Py_TYPE(op)->tp_print)(op, fp, flags); in internal_print()
|
D | typeobject.c | 4042 COPYSLOT(tp_print); 6038 TPSLOT("__str__", tp_print, NULL, NULL, ""), 6039 TPSLOT("__repr__", tp_print, NULL, NULL, ""),
|
/external/python/cpython2/Modules/ |
D | _collectionsmodule.c | 1594 sts = PyDict_Type.tp_print((PyObject *)dd, fp, 0); in defdict_print()
|
/external/python/cpython2/Doc/extending/ |
D | newtypes.rst | 87 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/ |
D | 3.9.rst | 1382 * The ``tp_print`` slot of :ref:`PyTypeObject <type-structs>` has been removed.
|
/external/python/cpython3/Doc/c-api/ |
D | typeobj.rst | 715 Before version 3.8, this slot was named ``tp_print``.
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.6a1.rst | 580 PyObject_Print() does the right thing along with various tp_print
|