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 scoder
Recipients docs@python, scoder
Date 2011-09-09.18:26:28
SpamBayes Score 0.0005599552
Marked as misclassified No
Message-id <1315592789.75.0.632556595518.issue12949@psf.upfronthosting.co.za>
In-reply-to
Content
In Py3, PyCode_New() takes a new argument "kwonlyargcount". The signature change is not currently in the Py3 C-API documentation.

http://docs.python.org/dev/c-api/code.html

PyCodeObject *
PyCode_New(int argcount, int kwonlyargcount,
           int nlocals, int stacksize, int flags,
           PyObject *code, PyObject *consts, PyObject *names,
           PyObject *varnames, PyObject *freevars, PyObject *cellvars,
           PyObject *filename, PyObject *name, int firstlineno,
           PyObject *lnotab)
History
Date User Action Args
2011-09-09 18:26:29scodersetrecipients: + scoder, docs@python
2011-09-09 18:26:29scodersetmessageid: <1315592789.75.0.632556595518.issue12949@psf.upfronthosting.co.za>
2011-09-09 18:26:29scoderlinkissue12949 messages
2011-09-09 18:26:28scodercreate