Searched refs:pyyear (Results 1 – 1 of 1) sorted by relevance
1196 PyObject *pyyear = PySequence_GetItem(timetuple, 0); in wrap_strftime() local1197 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()