summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorHynek Schlawack <hs@ox.cx>2012-06-21 18:58:31 (GMT)
committerHynek Schlawack <hs@ox.cx>2012-06-21 18:58:31 (GMT)
commit69168354c254f72b7a13d35aff8bb02752d00d26 (patch)
treed0ca31048f26181e9cba9a8ea1c1fd69fa2ae70c /Misc
parenta759d4e9f40fd0b757600d5fd3666cdddee113fe (diff)
parent9ed8b4e4cac4f38109c3e08a8bfd19b7f6ad1c88 (diff)
downloadcpython-69168354c254f72b7a13d35aff8bb02752d00d26.zip
cpython-69168354c254f72b7a13d35aff8bb02752d00d26.tar.gz
cpython-69168354c254f72b7a13d35aff8bb02752d00d26.tar.bz2
#10053: Don't close FDs when FileIO.__init__ fails
Loosely based on the work by Hirokazu Yamamoto.
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 211599d..5ce4f12 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3.0 Beta 1?
Core and Builtins
-----------------
+- Issue #10053: Don't close FDs when FileIO.__init__ fails. Loosely based on
+ the work by Hirokazu Yamamoto.
+
- Issue #15096: Removed support for ur'' as the raw notation isn't
compatible with Python 2.x's raw unicode strings.