diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-09-01 19:37:43 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-09-01 19:37:43 (GMT) |
commit | a762285831d1591d5c621394f8f6be45688ba33d (patch) | |
tree | 5e24a13489617c5f68dede866921bcc92b46e4d1 /Misc | |
parent | 222b20844f28f37dbe5431eb293ef2b35df71ae7 (diff) | |
download | cpython-a762285831d1591d5c621394f8f6be45688ba33d.zip cpython-a762285831d1591d5c621394f8f6be45688ba33d.tar.gz cpython-a762285831d1591d5c621394f8f6be45688ba33d.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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.2.3? Core and Builtins ----------------- +- Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is now + mapped to POSIX errno ENOTDIR (previously EINVAL). + - Accept bytes for the AST string type. This is temporary until a proper fix in 3.3. |