summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2010-12-04 10:16:05 (GMT)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2010-12-04 10:16:05 (GMT)
commit427d3149ebe5c4495e69a04be5464e5b8b446c9e (patch)
tree9380506092a9bc0f482bf3e6c90735148a01e346 /Misc
parentb4162305bba375c5f18bd69d1b90b45fc35ca8f1 (diff)
downloadcpython-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/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 17b89e1..576331b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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