Searched refs:Py_tp_base (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython3/Modules/ |
D | xxlimited.c | 184 {Py_tp_base, NULL}, /* filled out in module init function */ 205 {Py_tp_base, NULL}, /* filled out in module init */
|
D | _testmultiphase.c | 327 {Py_tp_base, NULL}, /* filled out in module exec function */
|
D | _ssl.c | 590 {Py_tp_base, NULL}, /* Filled out in module init as it's not a constant */
|
D | _testcapimodule.c | 6382 PyTypeObject *base = (PyTypeObject *)PyType_GetSlot(Py_TYPE(self), Py_tp_base); in heapctypesubclasswithfinalizer_init()
|
/external/python/cpython3/Include/ |
D | typeslots.h | 55 #define Py_tp_base 48 macro
|
/external/python/cpython3/Doc/c-api/ |
D | type.rst | 159 If that also is ``NULL``, the *Py_tp_base* slot is used instead. 251 Setting :c:data:`Py_tp_bases` or :c:data:`Py_tp_base` may be
|
/external/python/cpython3/Objects/ |
D | typeobject.c | 2950 if (slot->slot == Py_tp_base) in PyType_FromModuleAndSpec() 3011 else if (slot->slot == Py_tp_base || slot->slot == Py_tp_bases) { in PyType_FromModuleAndSpec()
|