summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-01-01 16:03:45 (GMT)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-01-01 16:03:45 (GMT)
commit0f22d69cf6cb5e1bcf7aab4a81836c466a88ec86 (patch)
treeacc9f24c5582801ba63f5b56abe0a00aad7d9b3b /Misc
parent646d9a20b99c4c285ea09064cb151e5e2f24c86c (diff)
downloadcpython-0f22d69cf6cb5e1bcf7aab4a81836c466a88ec86.zip
cpython-0f22d69cf6cb5e1bcf7aab4a81836c466a88ec86.tar.gz
cpython-0f22d69cf6cb5e1bcf7aab4a81836c466a88ec86.tar.bz2
Merged revisions 68134 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r68134 | hirokazu.yamamoto | 2009-01-02 00:45:39 +0900 | 2 lines 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 30668e6..c97daca 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.1 alpha 0
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.