Searched refs:PyDateTime_DeltaType (Results 1 – 3 of 3) sorted by relevance
/third_party/python/Doc/c-api/ |
D | datetime.rst | 69 Return true if *ob* is of type :c:data:`PyDateTime_DeltaType` or a subtype of 70 :c:data:`PyDateTime_DeltaType`. *ob* must not be ``NULL``. This function always 76 Return true if *ob* is of type :c:data:`PyDateTime_DeltaType`. *ob* must not be 135 .. c:function:: PyObject* PyTimeZone_FromOffset(PyDateTime_DeltaType* offset) 142 .. c:function:: PyObject* PyTimeZone_FromOffsetAndName(PyDateTime_DeltaType* offset, PyUnicode* nam…
|
/third_party/python/Modules/ |
D | _datetimemodule.c | 31 #define PyDelta_Check(op) PyObject_TypeCheck(op, &PyDateTime_DeltaType) 32 #define PyDelta_CheckExact(op) Py_IS_TYPE(op, &PyDateTime_DeltaType) 131 static PyTypeObject PyDateTime_DeltaType; variable 1043 new_delta_ex(d, s, us, normalize, &PyDateTime_DeltaType) 1888 microseconds_to_delta_ex(pymicros, &PyDateTime_DeltaType) 2711 static PyTypeObject PyDateTime_DeltaType = { variable 3856 &PyDateTime_DeltaType, &offset, &name)) in timezone_new() 6490 capi->DeltaType = &PyDateTime_DeltaType; in get_datetime_capi() 6529 &PyDateTime_DeltaType, in _datetime_exec() 6558 PyObject *d = PyDateTime_DeltaType.tp_dict; in _datetime_exec()
|
/third_party/python/Tools/c-analyzer/cpython/ |
D | ignored.tsv | 2271 Modules/_datetimemodule.c - PyDateTime_DeltaType -
|