summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2012-10-04 10:37:56 (GMT)
committerJesus Cea <jcea@jcea.es>2012-10-04 10:37:56 (GMT)
commitdc469454ec997166aea062f5727a8d59bab2f7a0 (patch)
treed8f0d7ff0a05298ad7c79314eab6e06e964099a6 /Misc
parent279ed3cc55e786c96c11aa9f224c507de5024099 (diff)
downloadcpython-dc469454ec997166aea062f5727a8d59bab2f7a0.zip
cpython-dc469454ec997166aea062f5727a8d59bab2f7a0.tar.gz
cpython-dc469454ec997166aea062f5727a8d59bab2f7a0.tar.bz2
Closes #15488: Closed files keep their buffer alive
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 3b8ec21..042b3cc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,6 +24,9 @@ Core and Builtins
- Issue #15839: Convert SystemErrors in `super()` to RuntimeErrors.
+- Issue #15448: Buffered IO now frees the buffer when closed, instead
+ of when deallocating.
+
- Issue #15846: Fix SystemError which happened when using `ast.parse()` in an
exception handler on code with syntax errors.