Home
last modified time | relevance | path

Searched refs:PyDateTime_TimeZone_UTC (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Include/
Ddatetime.h203 #define PyDateTime_TimeZone_UTC PyDateTimeAPI->TimeZone_UTC macro
/third_party/python/Modules/
D_datetimemodule.c1054 static PyObject *PyDateTime_TimeZone_UTC; variable
1093 Py_INCREF(PyDateTime_TimeZone_UTC); in new_timezone()
1094 return PyDateTime_TimeZone_UTC; in new_timezone()
1310 Py_INCREF(PyDateTime_TimeZone_UTC); in tzinfo_from_isoformat_results()
1311 return PyDateTime_TimeZone_UTC; in tzinfo_from_isoformat_results()
3909 if (((PyObject *)self) == PyDateTime_TimeZone_UTC) in timezone_repr()
3931 if ((PyObject *)self == PyDateTime_TimeZone_UTC || in timezone_str()
6061 PyDateTime_TimeZone_UTC, in datetime_astimezone()
6071 result->tzinfo = PyDateTime_TimeZone_UTC; in datetime_astimezone()
6503 assert(PyDateTime_TimeZone_UTC != NULL); in get_datetime_capi()
[all …]
D_testcapimodule.c2559 Py_INCREF(PyDateTime_TimeZone_UTC); in get_timezone_utc_capi()
2560 return PyDateTime_TimeZone_UTC; in get_timezone_utc_capi()
/third_party/python/Doc/c-api/
Ddatetime.rst18 .. c:var:: PyObject* PyDateTime_TimeZone_UTC
/third_party/python/Tools/c-analyzer/cpython/
Dignored.tsv2719 Modules/_datetimemodule.c - PyDateTime_TimeZone_UTC -
/third_party/python/Doc/whatsnew/
D3.7.rst1706 and access to the UTC singleton with :c:data:`PyDateTime_TimeZone_UTC`.