diff options
author | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2008-10-09 10:00:30 (GMT) |
---|---|---|
committer | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2008-10-09 10:00:30 (GMT) |
commit | 10a018c285219b42d8a1cc972acf9e440a979106 (patch) | |
tree | 26c335c24e9f07aab0872471482f38f5b03e4156 /Misc | |
parent | fc72de7bca50d6757bf4e920e668bb0e8da2f4fa (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 |