summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-01-01 16:09:52 +0000
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-01-01 16:09:52 +0000
commit8ed9a8069dbef331d6097dcd2895f7cbf012897e (patch)
treee44da6de8c42e8c0d65cabd8caa91c483d2d2df4
parent0f22d69cf6cb5e1bcf7aab4a81836c466a88ec86 (diff)
downloadcpython-git-8ed9a8069dbef331d6097dcd2895f7cbf012897e.tar.gz
News fix. On py3k, `str' is unicode. should use `bytes'.
-rw-r--r--Misc/NEWS2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c97dacadb0..419a2c227e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,7 +13,7 @@ Core and Builtins
-----------------
- Issue #4797: IOError.filename was not set when _fileio.FileIO failed to open
- file with `str' filename on Windows.
+ file with `bytes' filename on Windows.
- Issue #3680: Reference cycles created through a dict, set or deque iterator
did not get collected.