summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-02-23 15:11:18 (GMT)
committerGeorg Brandl <georg@python.org>2008-02-23 15:11:18 (GMT)
commitad61bc8d9bb3839341ee99b2befc6760c44179d4 (patch)
tree1bd20fb6edd43434908162a4a4966bc61ed33f3d /Misc
parent7e251e83d5b488904212f91bace1322d12475803 (diff)
downloadcpython-ad61bc8d9bb3839341ee99b2befc6760c44179d4.zip
cpython-ad61bc8d9bb3839341ee99b2befc6760c44179d4.tar.gz
cpython-ad61bc8d9bb3839341ee99b2befc6760c44179d4.tar.bz2
#2067: file.__exit__() now calls subclasses' close() method.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 3 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c1172de..e1fc418 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,7 +12,9 @@ What's New in Python 2.6 alpha 1?
Core and builtins
-----------------
-- Patch #1759: Backport of PEP 3129 class decorators
+- Issue #2067: file.__exit__() now calls subclasses' close() method.
+
+- Patch #1759: Backport of PEP 3129 class decorators.
- Issue #1881: An internal parser limit has been increased. Also see
issue 215555 for a discussion.