summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-12-02 06:42:43 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-12-02 06:42:43 (GMT)
commit5adfac2c1b7fb4f0782d097e7e0e6c5614965634 (patch)
treef7614eada44038eee98ef3084df33c76604b8ec2 /Misc/NEWS
parent028ace1ccbabd40f6491b0337054a341be47a39d (diff)
downloadcpython-5adfac2c1b7fb4f0782d097e7e0e6c5614965634.zip
cpython-5adfac2c1b7fb4f0782d097e7e0e6c5614965634.tar.gz
cpython-5adfac2c1b7fb4f0782d097e7e0e6c5614965634.tar.bz2
Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code.
Original patch by Andreas Stührk.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 07897d7..a285005 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: TBA
Core and Builtins
-----------------
+- Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code.
+ Original patch by Andreas Stührk.
+
- Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X
when decode astral characters. Patch by Xiang Zhang.