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 vstinner
Recipients serhiy.storchaka, vstinner
Date 2017-03-21.10:28:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1490092128.1.0.527644918393.issue29736@psf.upfronthosting.co.za>
In-reply-to
Content
The following types were patched to use Argument Clinic (use now _PyArg_ParseTupleAndKeywordsFast or don't accept keyword arguments anymore):

* complex
* float (don't accept keywords anymore)
* list
* tuple

The following types still uses PyArg_ParseTupleAndKeywords:

* bytes
* bytearray
* int (PyLong)
* str (unicode_new)

bool doesn't accept keywords anymore and uses now PyArg_UnpackTuple().
History
Date User Action Args
2017-03-21 10:28:48vstinnersetrecipients: + vstinner, serhiy.storchaka
2017-03-21 10:28:48vstinnersetmessageid: <1490092128.1.0.527644918393.issue29736@psf.upfronthosting.co.za>
2017-03-21 10:28:48vstinnerlinkissue29736 messages
2017-03-21 10:28:48vstinnercreate