Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.7k
Closed
Description
Currently_struct.unpack_iterator type defines its own constructor just to report to user that it isn't instantiable (with a typo, by the way):
Lines 1835 to 1838 in8d95012
| PyObject*unpackiter_new(PyTypeObject*type,PyObject*args,PyObject*kwds) { | |
| PyErr_Format(PyExc_TypeError,"Cannot create '%.200s objects",_PyType_Name(type)); | |
| returnNULL; | |
| } |
It can be easily removed and replaced by appropriate type flag. I'll submit a PR.