New submission from Dan Snider <mr.assume.a...@gmail.com>:

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;
}

----------
components: ctypes
messages: 322754
nosy: bup
priority: normal
severity: normal
status: open
title: _ctypes PyCField_new doesn't do anything
type: crash
versions: Python 3.6, Python 3.7, Python 3.8

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue34290>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to