[issue34290] _ctypes PyCField_new doesn't do anything

2021-10-18 Thread Irit Katriel
Irit Katriel added the comment: What is the bug you are reporting? -- nosy: +iritkatriel type: crash -> ___ Python tracker ___

[issue34290] _ctypes PyCField_new doesn't do anything

2018-07-31 Thread Dan Snider
New submission from Dan Snider : The function is essentially nothing more than a prototype at the moment: static PyObject * PyCField_new(PyTypeObject *type, PyObject *args, PyObject *kwds) { CFieldObject *obj; obj = (CFieldObject *)type->tp_alloc(type, 0); return (PyObject *)obj; }