Home
last modified time | relevance | path

Searched refs:_PyAnyInt_CheckExact (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Include/
Dintobject.h35 #define _PyAnyInt_CheckExact(op) (PyInt_CheckExact(op) || PyLong_CheckExact(op)) macro
/external/python/cpython2/Modules/_sqlite/
Dstatement.c208 if (_PyAnyInt_CheckExact(obj) in _need_adapt()
/external/python/cpython2/Modules/
Ddatetimemodule.c1540 assert(result == NULL || _PyAnyInt_CheckExact(result)); in delta_to_microseconds()
1563 assert(_PyAnyInt_CheckExact(pyus)); in microseconds_to_delta_ex()
1859 assert(_PyAnyInt_CheckExact(prod)); in accum()
1862 assert(sum == NULL || _PyAnyInt_CheckExact(sum)); in accum()
1905 assert(_PyAnyInt_CheckExact(factor)); in accum()
1923 assert(y == NULL || _PyAnyInt_CheckExact(y)); in accum()
/external/python/cpython2/Objects/
Dcodeobject.c426 || _PyAnyInt_CheckExact(op) in _PyCode_ConstantKey()