diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-13 12:27:33 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-04-13 12:27:33 (GMT) |
commit | 9ec6464008c3a04e6486541c4f031bdf0af28cf3 (patch) | |
tree | 8cd8986e8cc8422e9e1a09204a557fda8eeeb57b /Misc | |
parent | f1023bad2ebe4136666934c69794ba95cbd4eb09 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |