Home
last modified time | relevance | path

Searched refs:tp_str (Results 1 – 20 of 20) 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 offsetof(PyHeapTypeObject, ht_type.tp_str),
Dobject.c550 if (Py_TYPE(v)->tp_str == NULL) in PyObject_Str()
564 res = (*Py_TYPE(v)->tp_str)(v); in PyObject_Str()
Dtypeobject.c5062 COPYSLOT(tp_str); in inherit_slots()
6803 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/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.rst150 reprfunc tp_str;
167 The :c:member:`~PyTypeObject.tp_str` handler is to :func:`str` what the :c:member:`~PyTypeObject.tp…
171 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/cpython3/Include/
Dobject.h371 reprfunc tp_str; member
/external/python/cpython3/Modules/
D_json.c1479 PyObject *encoded = PyLong_Type.tp_str(obj); in encoder_listencode_obj()
1643 kstr = PyLong_Type.tp_str(key); in encoder_listencode_dict()
/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/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/cpython3/Doc/c-api/
Dtypeobj.rst325 .. c:member:: reprfunc PyTypeObject.tp_str
/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.