summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-09-01 19:38:37 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-09-01 19:38:37 (GMT)
commit5edbaf295e60e0152c3f240ebef6408fa74572c3 (patch)
tree591b5c7e0b8d3a941b73a46d1151a5026cf2887d /Misc
parentc2d9a0226e785c6a77fc0de776f2eece92eebadb (diff)
parenta762285831d1591d5c621394f8f6be45688ba33d (diff)
downloadcpython-5edbaf295e60e0152c3f240ebef6408fa74572c3.zip
cpython-5edbaf295e60e0152c3f240ebef6408fa74572c3.tar.gz
cpython-5edbaf295e60e0152c3f240ebef6408fa74572c3.tar.bz2
Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is now
mapped to POSIX errno ENOTDIR (previously EINVAL).
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 f1ee836..57a1237 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.3 Alpha 1?
Core and Builtins
-----------------
+- Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is now
+ mapped to POSIX errno ENOTDIR (previously EINVAL).
+
- Issue #9200: The str.is* methods now work with strings that contain non-BMP
characters even in narrow Unicode builds.