Lines Matching defs:rep
273 PyObject *rep = NULL;
384 rep = unicode_encode_call_errorhandler(
387 if (!rep)
404 if (PyBytes_Check(rep)) {
406 PyBytes_AS_STRING(rep),
407 PyBytes_GET_SIZE(rep));
410 /* rep is unicode */
411 if (PyUnicode_READY(rep) < 0)
414 if (!PyUnicode_IS_ASCII(rep)) {
422 PyUnicode_DATA(rep),
423 PyUnicode_GET_LENGTH(rep));
428 Py_CLEAR(rep);
468 Py_XDECREF(rep);