This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: _ctypes PyCField_new doesn't do anything
Type: Stage:
Components: ctypes Versions: Python 3.8, Python 3.7, Python 3.6
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: bup, iritkatriel
Priority: normal Keywords:

Created on 2018-07-31 10:26 by bup, last changed 2022-04-11 14:59 by admin.

Messages (2)
msg322754 - (view) Author: Dan Snider (bup) * Date: 2018-07-31 10:26
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;
}
msg404237 - (view) Author: Irit Katriel (iritkatriel) * (Python committer) Date: 2021-10-18 22:53
What is the bug you are reporting?
History
Date User Action Args
2022-04-11 14:59:04adminsetgithub: 78471
2021-10-18 22:53:41iritkatrielsettype: crash ->

messages: + msg404237
nosy: + iritkatriel
2018-07-31 10:26:27bupcreate