diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-07 09:27:55 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-12-07 09:27:55 (GMT) |
commit | 1b58d8aafa5c4705deeb898027b33c4be7bc71e1 (patch) | |
tree | 6de0a97a68737cff11b88c40512ebf0bd19e5f83 /Misc | |
parent | 4fc7942118f017c214534d29b18f2f844e68c8cf (diff) | |
parent | 0c78634d785361dcde0c2c138e8bf5f9bb744d3d (diff) | |
download | cpython-1b58d8aafa5c4705deeb898027b33c4be7bc71e1.zip cpython-1b58d8aafa5c4705deeb898027b33c4be7bc71e1.tar.gz cpython-1b58d8aafa5c4705deeb898027b33c4be7bc71e1.tar.bz2 |
Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code.
Original patch by Andreas Stührk.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.7.0 alpha 1 Core and Builtins ----------------- +- Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code. + Original patch by Andreas Stührk. + - Issue #23722: Rather than silently producing a class that doesn't support zero-argument ``super()`` in methods, failing to pass the new ``__classcell__`` namespace entry up to ``type.__new__`` now results in a |