summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-01-01 15:45:39 (GMT)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-01-01 15:45:39 (GMT)
commit99a1b20bbf906299a7ea7b871f290dee580a3f18 (patch)
treeccedad1c8bb2ad53f32b039bdf0a961f12bd79ff /Misc
parent733dc74442a89972278d1fdf8a64b5739cdbad67 (diff)
downloadcpython-99a1b20bbf906299a7ea7b871f290dee580a3f18.zip
cpython-99a1b20bbf906299a7ea7b871f290dee580a3f18.tar.gz
cpython-99a1b20bbf906299a7ea7b871f290dee580a3f18.tar.bz2
Issue #4797: IOError.filename was not set when _fileio.FileIO failed to open
file with `str' filename on Windows.
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 8ab8dd2..a0aada9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
+- Issue #4797: IOError.filename was not set when _fileio.FileIO failed to open
+ file with `str' filename on Windows.
+
- Issue #3680: Reference cycles created through a dict, set or deque iterator
did not get collected.