Lines Matching defs:repr
2079 PyObject *repr = NULL;
2170 repr = PyBytes_FromStringAndSize(NULL, (Py_ssize_t)nbytes);
2171 if (repr == NULL)
2173 pdata = (unsigned char *)PyBytes_AS_STRING(repr);
2212 /* proto < 2: write the repr and newline. This is quadratic-time (in
2214 to the repr, for compatibility with Python 2.x. */
2216 repr = PyObject_Repr(obj);
2217 if (repr == NULL)
2220 string = PyUnicode_AsUTF8AndSize(repr, &size);
2234 Py_XDECREF(repr);