summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-04-13 12:28:53 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-04-13 12:28:53 (GMT)
commit131b8f8eee3498d5d334bde9671825bdfe0cf222 (patch)
tree2b2ac519811dd9ee8f0029375eaf18642e91180c /Misc
parent6fce35354a7fecb9130fd163f86822c468d1413e (diff)
parent3d7497608ba8dd0b82d69944f484febdad7dc507 (diff)
downloadcpython-131b8f8eee3498d5d334bde9671825bdfe0cf222.zip
cpython-131b8f8eee3498d5d334bde9671825bdfe0cf222.tar.gz
cpython-131b8f8eee3498d5d334bde9671825bdfe0cf222.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 68f8dd6..6f58482 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: tba
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 #25339: PYTHONIOENCODING now has priority over locale in setting the
error handler for stdin and stdout.