Home
last modified time | relevance | path

Searched refs:call_tzinfo_method (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython3/Modules/
D_datetimemodule.c1144 call_tzinfo_method(PyObject *tzinfo, const char *name, PyObject *tzinfoarg) in call_tzinfo_method() function
1190 return call_tzinfo_method(tzinfo, "utcoffset", tzinfoarg); in call_utcoffset()
1204 return call_tzinfo_method(tzinfo, "dst", tzinfoarg); in call_dst()
/external/python/cpython2/Modules/
Ddatetimemodule.c780 call_tzinfo_method(PyObject *tzinfo, char *methname, PyObject *tzinfoarg) in call_tzinfo_method() function
832 u = call_tzinfo_method(tzinfo, name, tzinfoarg); in call_utc_tzinfo_method()
/external/python/cpython3/Misc/NEWS.d/
D3.5.0a1.rst2910 Fixed premature DECREF in call_tzinfo_method. Patch by Tom Flanagan.
/external/python/cpython3/Misc/
DHISTORY1534 - Issue #22044: Fixed premature DECREF in call_tzinfo_method.