Home
last modified time | relevance | path

Searched refs:tp_str (Results 1 – 21 of 21) sorted by relevance

/external/python/cpython2/Doc/includes/
Dtypestruct.h25 reprfunc tp_str; member
/external/python/cpython3/Doc/includes/
Dtypestruct.h26 reprfunc tp_str; member
/external/python/cpython3/Objects/
Dtypeslots.inc71 {-1, offsetof(PyTypeObject, tp_str)},
Dobject.c483 if (Py_TYPE(v)->tp_str == NULL) in PyObject_Str()
499 res = (*Py_TYPE(v)->tp_str)(v); in PyObject_Str()
Dtypeobject.c5889 COPYSLOT(tp_str); in inherit_slots()
7921 TPSLOT("__str__", tp_str, slot_tp_str, wrap_unaryfunc,
/external/python/cpython2/Objects/
Dobject.c428 if (Py_TYPE(v)->tp_str == NULL) in _PyObject_Str()
435 res = (*Py_TYPE(v)->tp_str)(v); in _PyObject_Str()
539 if (Py_TYPE(v)->tp_str != NULL) in PyObject_Unicode()
540 res = (*Py_TYPE(v)->tp_str)(v); in PyObject_Unicode()
Dexceptions.c126 if (Py_TYPE(self)->tp_str != (reprfunc)BaseException_str) { in BaseException_unicode()
130 str = Py_TYPE(self)->tp_str((PyObject*)self); in BaseException_unicode()
Dtypeobject.c4055 COPYSLOT(tp_str);
6052 TPSLOT("__str__", tp_str, slot_tp_str, wrap_unaryfunc,
Dstringobject.c4021 result = Py_TYPE(val)->tp_str(val); in _PyString_FormatLong()
/external/python/cpython3/Include/cpython/
Dobject.h216 reprfunc tp_str; member
/external/python/cpython2/Modules/
D_ssl.c4199 ((PyTypeObject *)PySSLErrorObject)->tp_str = (reprfunc)SSLError_str; in init_ssl()
4223 ((PyTypeObject *)PySSLZeroReturnErrorObject)->tp_str = (reprfunc)SSLError_str; in init_ssl()
4224 ((PyTypeObject *)PySSLWantReadErrorObject)->tp_str = (reprfunc)SSLError_str; in init_ssl()
4225 ((PyTypeObject *)PySSLWantWriteErrorObject)->tp_str = (reprfunc)SSLError_str; in init_ssl()
4226 ((PyTypeObject *)PySSLSyscallErrorObject)->tp_str = (reprfunc)SSLError_str; in init_ssl()
4227 ((PyTypeObject *)PySSLEOFErrorObject)->tp_str = (reprfunc)SSLError_str; in init_ssl()
/external/python/cpython3/Doc/extending/
Dnewtypes.rst164 reprfunc tp_str;
181 The :c:member:`~PyTypeObject.tp_str` handler is to :func:`str` what the :c:member:`~PyTypeObject.tp…
185 consumption. If :c:member:`~PyTypeObject.tp_str` is not specified, the :c:member:`~PyTypeObject.tp…
/external/python/cpython2/Include/
Dobject.h348 reprfunc tp_str; member
/external/python/cpython2/Doc/extending/
Dnewtypes.rst97 0, /* tp_str */
1043 :c:member:`~PyTypeObject.tp_str` and :c:member:`~PyTypeObject.tp_repr` handlers. ::
1046 reprfunc tp_str;
1064 The :c:member:`~PyTypeObject.tp_str` handler is to :func:`str` what the :c:member:`~PyTypeObject.tp…
1068 consumption. If :c:member:`~PyTypeObject.tp_str` is not specified, the :c:member:`~PyTypeObject.tp…
/external/python/cpython2/Doc/c-api/
Dtypeobj.rst204 …instance's :c:member:`~PyTypeObject.tp_repr` or :c:member:`~PyTypeObject.tp_str` function is calle…
207 … different output than :c:member:`~PyTypeObject.tp_repr` or :c:member:`~PyTypeObject.tp_str` would.
214 flag bit is set, the instance should be printed the same way as :c:member:`~PyTypeObject.tp_str`
222 :c:member:`~PyTypeObject.tp_repr` and :c:member:`~PyTypeObject.tp_str` for printing.
362 .. c:member:: reprfunc PyTypeObject.tp_str
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst74 …| :c:member:`~PyTypeObject.tp_str` | :c:type:`reprfunc` | __str__ …
917 .. c:member:: reprfunc PyTypeObject.tp_str
926 PyObject *tp_str(PyObject *self);
2624 0, /* tp_str */
/external/python/cpython3/Modules/
D_zoneinfo.c2597 .tp_str = (reprfunc)zoneinfo_str,
/external/python/cpython2/Misc/NEWS.d/
D2.6a1.rst566 self-referential tuple, which is possible from C code. Nor did object's tp_str
567 consider that a type's tp_str could do something that could lead to an
/external/python/cpython2/Misc/
DHISTORY6740 PyObject_Str(obj) in that it tries to use __str__/tp_str
15228 is called, and tp_str defines how an object's str() is computed.
/external/python/cpython3/Misc/
DHISTORY24119 PyObject_Str(obj) in that it tries to use __str__/tp_str
32607 is called, and tp_str defines how an object's str() is computed.
/external/python/cpython3/Doc/data/
Dpython3.10.abi2559 …<var-decl name='tp_str' type-id='type-id-42' visibility='default' filepath='./Include/cpython/obje…