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.

Author bup
Recipients bup
Date 2018-07-31.10:26:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1533032787.65.0.56676864532.issue34290@psf.upfronthosting.co.za>
In-reply-to
Content
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;
}
History
Date User Action Args
2018-07-31 10:26:27bupsetrecipients: + bup
2018-07-31 10:26:27bupsetmessageid: <1533032787.65.0.56676864532.issue34290@psf.upfronthosting.co.za>
2018-07-31 10:26:27buplinkissue34290 messages
2018-07-31 10:26:27bupcreate