Home
last modified time | relevance | path

Searched refs:julyzone (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Modules/
Dtimemodule.c831 long janzone, julyzone; in inittimezone()
840 julyzone = -p->tm_gmtoff; in inittimezone()
844 if( janzone < julyzone ) { in inittimezone()
846 PyModule_AddIntConstant(m, "timezone", julyzone); in inittimezone()
849 janzone != julyzone); in inittimezone()
855 PyModule_AddIntConstant(m, "altzone", julyzone); in inittimezone()
857 janzone != julyzone); in inittimezone()
/external/python/cpython3/Modules/
Dtimemodule.c1745 int julyzone = (int)julyzone_t; local
1748 if (janzone < julyzone) {
1750 PyModule_AddIntConstant(m, "timezone", julyzone);
1752 PyModule_AddIntConstant(m, "daylight", janzone != julyzone);
1756 PyModule_AddIntConstant(m, "altzone", julyzone);
1757 PyModule_AddIntConstant(m, "daylight", janzone != julyzone);