Home
last modified time | relevance | path

Searched refs:PyDateTime_DateTimeType (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Include/
Ddatetime.h173 #define PyDateTime_Check(op) PyObject_TypeCheck(op, &PyDateTime_DateTimeType)
174 #define PyDateTime_CheckExact(op) (Py_TYPE(op) == &PyDateTime_DateTimeType)
/external/python/cpython2/Doc/c-api/
Ddatetime.rst37 Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType` or a subtype of
38 :c:data:`PyDateTime_DateTimeType`. *ob* must not be *NULL*.
45 Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType`. *ob* must not
/external/python/cpython2/Modules/
Ddatetimemodule.c103 static PyTypeObject PyDateTime_DateTimeType; variable
695 &PyDateTime_DateTimeType)
4694 statichere PyTypeObject PyDateTime_DateTimeType = { variable
4751 &PyDateTime_DateTimeType,
4778 if (PyType_Ready(&PyDateTime_DateTimeType) < 0) in initdatetime()
4842 d = PyDateTime_DateTimeType.tp_dict; in initdatetime()
4866 Py_INCREF(&PyDateTime_DateTimeType); in initdatetime()
4868 (PyObject *)&PyDateTime_DateTimeType); in initdatetime()