Lines Matching refs:zreplacement
1167 PyObject *zreplacement = NULL; /* py string, replacement for %z */ in wrap_strftime() local
1239 if (zreplacement == NULL) { in wrap_strftime()
1243 zreplacement = PyString_FromString(""); in wrap_strftime()
1244 if (zreplacement == NULL) goto Done; in wrap_strftime()
1253 Py_DECREF(zreplacement); in wrap_strftime()
1254 zreplacement = PyString_FromString(buf); in wrap_strftime()
1255 if (zreplacement == NULL) goto Done; in wrap_strftime()
1258 assert(zreplacement != NULL); in wrap_strftime()
1259 ptoappend = PyString_AS_STRING(zreplacement); in wrap_strftime()
1260 ntoappend = PyString_GET_SIZE(zreplacement); in wrap_strftime()
1355 Py_XDECREF(zreplacement); in wrap_strftime()