Home | History | Annotate | Download | only in simplejson

Lines Matching defs:strchunk

567             PyObject *strchunk;
569 strchunk = PyString_FromStringAndSize(&buf[end], next - end);
570 if (strchunk == NULL) {
574 chunk = PyUnicode_FromEncodedObject(strchunk, encoding, NULL);
575 Py_DECREF(strchunk);
581 chunk = strchunk;