Lines Matching refs:zreplacement
1472 PyObject *zreplacement = NULL; /* py string, replacement for %z */ in wrap_strftime() local
1527 if (zreplacement == NULL) { in wrap_strftime()
1531 zreplacement = PyBytes_FromStringAndSize("", 0); in wrap_strftime()
1532 if (zreplacement == NULL) goto Done; in wrap_strftime()
1541 Py_DECREF(zreplacement); in wrap_strftime()
1542 zreplacement = in wrap_strftime()
1545 if (zreplacement == NULL) in wrap_strftime()
1549 assert(zreplacement != NULL); in wrap_strftime()
1550 ptoappend = PyBytes_AS_STRING(zreplacement); in wrap_strftime()
1551 ntoappend = PyBytes_GET_SIZE(zreplacement); in wrap_strftime()
1627 Py_XDECREF(zreplacement); in wrap_strftime()