Home
last modified time | relevance | path

Searched refs:PyDate_CheckExact (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Include/
Ddatetime.h171 #define PyDate_CheckExact(op) (Py_TYPE(op) == &PyDateTime_DateType) macro
195 #define PyDate_CheckExact(op) (Py_TYPE(op) == PyDateTimeAPI->DateType) macro
/external/python/cpython3/Include/
Ddatetime.h199 #define PyDate_CheckExact(op) Py_IS_TYPE(op, PyDateTimeAPI->DateType) macro
/external/python/cpython2/Doc/c-api/
Ddatetime.rst27 .. c:function:: int PyDate_CheckExact(PyObject *ob)
/external/python/cpython3/Doc/c-api/
Ddatetime.rst34 .. c:function:: int PyDate_CheckExact(PyObject *ob)
/external/python/cpython3/Doc/data/
Drefcounts.dat408 PyDate_CheckExact:int:::
409 PyDate_CheckExact:PyObject*:ob:0:
/external/python/cpython3/Modules/
D_datetimemodule.c21 #define PyDate_CheckExact(op) Py_IS_TYPE(op, &PyDateTime_DateType) macro
D_testcapimodule.c2333 MAKE_DATETIME_CHECK_FUNC(PyDate_Check, PyDate_CheckExact) in datetime_check_date()