summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-04-13 12:27:33 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-04-13 12:27:33 (GMT)
commit9ec6464008c3a04e6486541c4f031bdf0af28cf3 (patch)
tree8cd8986e8cc8422e9e1a09204a557fda8eeeb57b /Misc
parentf1023bad2ebe4136666934c69794ba95cbd4eb09 (diff)
downloadcpython-9ec6464008c3a04e6486541c4f031bdf0af28cf3.zip
cpython-9ec6464008c3a04e6486541c4f031bdf0af28cf3.tar.gz
cpython-9ec6464008c3a04e6486541c4f031bdf0af28cf3.tar.bz2
Issue #26718: super.__init__ no longer leaks memory if called multiple times.
NOTE: A direct call of super.__init__ is not endorsed!
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ed6e8bc..cebb5a5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 2.7.12?
Core and Builtins
-----------------
+- Issue #26718: super.__init__ no longer leaks memory if called multiple times.
+ NOTE: A direct call of super.__init__ is not endorsed!
+
- Issue #13410: Fixed a bug in PyUnicode_Format where it failed to properly
ignore errors from a __int__() method.