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 methane
Recipients methane, vstinner
Date 2017-03-01.09:20:00
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1488360000.25.0.226175161117.issue29684@psf.upfronthosting.co.za>
In-reply-to
Content
This issue is spin off issue29548.

PyEval_CallObjectWithKeywords(PyObject *func, PyObject *args, PyObject *kwargs)
should raise TypeError when kwargs is not dict.
But after this commit [1], assert(PyDict_Check(kwargs)) can be called when args==NULL.

[1] https://github.com/python/cpython/commit/155ea65e5c88d250a752ee5321860ef11ede4085
History
Date User Action Args
2017-03-01 09:20:00methanesetrecipients: + methane, vstinner
2017-03-01 09:20:00methanesetmessageid: <1488360000.25.0.226175161117.issue29684@psf.upfronthosting.co.za>
2017-03-01 09:20:00methanelinkissue29684 messages
2017-03-01 09:20:00methanecreate