Home | History | Annotate | Download | only in Objects

Lines Matching full:newbytes

2713     PyObject *newbytes;
2722 newbytes = PyByteArray_FromStringAndSize(NULL, byteslen);
2723 if (!newbytes)
2725 buf = PyByteArray_AS_STRING(newbytes);
2742 if (PyByteArray_Resize(newbytes, j) < 0)
2744 return newbytes;
2747 Py_DECREF(newbytes);