Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_datetimemodule.c1046 static PyObject *PyDateTime_TimeZone_UTC; variable
1085 Py_INCREF(PyDateTime_TimeZone_UTC); in new_timezone()
1086 return PyDateTime_TimeZone_UTC; in new_timezone()
1299 Py_INCREF(PyDateTime_TimeZone_UTC); in tzinfo_from_isoformat_results()
1300 return PyDateTime_TimeZone_UTC; in tzinfo_from_isoformat_results()
3683 if (((PyObject *)self) == PyDateTime_TimeZone_UTC) in timezone_repr()
3705 if ((PyObject *)self == PyDateTime_TimeZone_UTC || in timezone_str()
5831 PyDateTime_TimeZone_UTC, in datetime_astimezone()
5841 result->tzinfo = PyDateTime_TimeZone_UTC; in datetime_astimezone()
6386 PyDateTime_TimeZone_UTC = x; in PyInit__datetime()
[all …]
D_testcapimodule.c2326 Py_INCREF(PyDateTime_TimeZone_UTC); in get_timezone_utc_capi()
2327 return PyDateTime_TimeZone_UTC; in get_timezone_utc_capi()
/external/python/cpython3/Include/
Ddatetime.h210 #define PyDateTime_TimeZone_UTC PyDateTimeAPI->TimeZone_UTC macro
/external/python/cpython3/Doc/c-api/
Ddatetime.rst18 .. c:var:: PyObject* PyDateTime_TimeZone_UTC
/external/python/cpython3/Doc/whatsnew/
D3.7.rst1698 and access to the UTC singleton with :c:data:`PyDateTime_TimeZone_UTC`.