Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Ddatetimemodule.c1168 PyObject *Zreplacement = NULL; /* py string, replacement for %Z */ in wrap_strftime() local
1264 if (Zreplacement == NULL) { in wrap_strftime()
1266 Zreplacement = PyString_FromString(""); in wrap_strftime()
1267 if (Zreplacement == NULL) goto Done; in wrap_strftime()
1281 Py_DECREF(Zreplacement); in wrap_strftime()
1282 Zreplacement = PyObject_CallMethod( in wrap_strftime()
1286 if (Zreplacement == NULL) in wrap_strftime()
1288 if (!PyString_Check(Zreplacement)) { in wrap_strftime()
1297 assert(Zreplacement != NULL); in wrap_strftime()
1298 ptoappend = PyString_AS_STRING(Zreplacement); in wrap_strftime()
[all …]