Home
last modified time | relevance | path

Searched refs:nb_index (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython3/Objects/
Dtypeslots.inc14 offsetof(PyHeapTypeObject, as_number.nb_index),
Dabstract.c1272 result = item->ob_type->tp_as_number->nb_index(item); in PyNumber_Index()
Dtypeobject.c5002 COPYNUM(nb_index); in inherit_slots()
6925 NBSLOT("__index__", nb_index, slot_nb_index, wrap_unaryfunc,
/external/python/cpython2/Include/
Dabstract.h851 (obj)->ob_type->tp_as_number->nb_index != NULL)
Dobject.h272 unaryfunc nb_index; member
/external/python/cpython3/Include/
Dabstract.h715 (obj)->ob_type->tp_as_number->nb_index != NULL)
Dobject.h281 unaryfunc nb_index; member
/external/python/cpython3/Doc/c-api/
Dnumber.rst281 Returns ``1`` if *o* is an index integer (has the nb_index slot of the
Dtypeobj.rst1133 unaryfunc nb_index;
/external/python/cpython2/Doc/c-api/
Dnumber.rst319 Returns ``1`` if *o* is an index integer (has the nb_index slot of the
Dtypeobj.rst1198 unaryfunc nb_index;
/external/python/cpython2/Misc/NEWS.d/
D2.6b1.rst192 delegate nb_index and the floor/truediv slots in weakref.proxy.
/external/python/cpython2/Objects/
Dabstract.c1500 result = item->ob_type->tp_as_number->nb_index(item);
Dtypeobject.c3998 COPYNUM(nb_index);
6176 NBSLOT("__index__", nb_index, slot_nb_index, wrap_unaryfunc,
/external/python/cpython2/Doc/whatsnew/
D2.5.rst956 A corresponding :attr:`nb_index` slot was added to the C-level
/external/python/cpython3/Doc/whatsnew/
D2.5.rst957 A corresponding :attr:`nb_index` slot was added to the C-level
/external/python/cpython2/Misc/
DHISTORY1094 nb_index slot to the PyNumberMethods struct. The slot is consulted instead
/external/python/cpython3/Misc/
DHISTORY18478 nb_index slot to the PyNumberMethods struct. The slot is consulted instead