[issue29684] Minor regression in PyEval_CallObjectWithKeywords()

2017-03-31 Thread Donald Stufft
Changes by Donald Stufft : -- pull_requests: +880 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue29684] Minor regression in PyEval_CallObjectWithKeywords()

2017-03-24 Thread INADA Naoki
INADA Naoki added the comment: New changeset 3824cd8fd44f287ea2a76120a39ee76eb34bbf32 by INADA Naoki in branch 'master': bpo-29684: Fix regression of PyEval_CallObjectWithKeywords (GH-87) https://github.com/python/cpython/commit/3824cd8fd44f287ea2a76120a39ee76eb34bbf32 -- ___

[issue29684] Minor regression in PyEval_CallObjectWithKeywords()

2017-03-24 Thread INADA Naoki
INADA Naoki added the comment: New changeset 023532e558bb0c5bf60195aebbafe63a0bebd85e by INADA Naoki in branch '3.6': bpo-29684: Fix minor regression of PyEval_CallObjectWithKeywords. (GH-378) https://github.com/python/cpython/commit/023532e558bb0c5bf60195aebbafe63a0bebd85e -- __

[issue29684] Minor regression in PyEval_CallObjectWithKeywords()

2017-03-17 Thread Larry Hastings
Changes by Larry Hastings : -- pull_requests: +614 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue29684] Minor regression in PyEval_CallObjectWithKeywords()

2017-03-01 Thread STINNER Victor
STINNER Victor added the comment: Both PR have been merged, I close the issue. -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker ___

[issue29684] Minor regression in PyEval_CallObjectWithKeywords()

2017-03-01 Thread INADA Naoki
Changes by INADA Naoki : -- pull_requests: +317 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue29684] Minor regression in PyEval_CallObjectWithKeywords()

2017-03-01 Thread INADA Naoki
Changes by INADA Naoki : -- pull_requests: +314 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue29684] Minor regression in PyEval_CallObjectWithKeywords()

2017-03-01 Thread INADA Naoki
New submission from INADA Naoki: 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: