summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2008-10-09 10:00:30 (GMT)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2008-10-09 10:00:30 (GMT)
commit10a018c285219b42d8a1cc972acf9e440a979106 (patch)
tree26c335c24e9f07aab0872471482f38f5b03e4156 /Misc
parentfc72de7bca50d6757bf4e920e668bb0e8da2f4fa (diff)
downloadcpython-10a018c285219b42d8a1cc972acf9e440a979106.zip
cpython-10a018c285219b42d8a1cc972acf9e440a979106.tar.gz
cpython-10a018c285219b42d8a1cc972acf9e440a979106.tar.bz2
On windows, os.chdir given unicode was not working if GetCurrentDirectoryW
returned a path longer than MAX_PATH. (But It's doubtful this code path is really executed because I cannot move to such directory on win2k)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index dc43554..dc191d6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,10 @@ What's New in Python 2.7 alpha 1
Core and Builtins
-----------------
+- On windows, os.chdir given unicode was not working if GetCurrentDirectoryW
+ returned a path longer than MAX_PATH. (But It's doubtful this code path is
+ really executed because I cannot move to such directory on win2k)
+
- Issue #4069: When set.remove(element) is used with a set element, the element
is temporarily replaced with an equivalent frozenset. But the eventual
KeyError would always report the empty frozenset([]) as the missing key. Now