Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Ddatetimemodule.c1196 PyObject *pyyear = PySequence_GetItem(timetuple, 0); in wrap_strftime() local
1197 if (pyyear == NULL) return NULL; in wrap_strftime()
1198 assert(PyInt_Check(pyyear)); in wrap_strftime()
1199 year = PyInt_AsLong(pyyear); in wrap_strftime()
1200 Py_DECREF(pyyear); in wrap_strftime()