diff options
author | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2010-12-04 10:16:05 (GMT) |
---|---|---|
committer | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2010-12-04 10:16:05 (GMT) |
commit | 427d3149ebe5c4495e69a04be5464e5b8b446c9e (patch) | |
tree | 9380506092a9bc0f482bf3e6c90735148a01e346 /Misc | |
parent | b4162305bba375c5f18bd69d1b90b45fc35ca8f1 (diff) | |
download | cpython-427d3149ebe5c4495e69a04be5464e5b8b446c9e.zip cpython-427d3149ebe5c4495e69a04be5464e5b8b446c9e.tar.gz cpython-427d3149ebe5c4495e69a04be5464e5b8b446c9e.tar.bz2 |
Fixed several corner case issues on os.stat/os.lstat related to reparse
points. (Windows)
- Set S_IEXEC via final path name not link name.
- Set S_IFLNK also via FindFirstFile (when CreateFile fails)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.2 Beta 1? Core and Builtins ----------------- +- Fixed several corner case issues on os.stat/os.lstat related to reparse + points. (Windows) + - PEP 384 (Defining a Stable ABI) is implemented. - Issue #2690: Range objects support negative indices and slicing |