]> granicus.if.org Git - python/commitdiff
Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is now
authorAntoine Pitrou <solipsis@pitrou.net>
Thu, 1 Sep 2011 19:37:43 +0000 (21:37 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Thu, 1 Sep 2011 19:37:43 +0000 (21:37 +0200)
mapped to POSIX errno ENOTDIR (previously EINVAL).

Lib/test/test_exceptions.py
Misc/NEWS
PC/errmap.h
PC/generrmap.c

index d3c00620527346d6830ca4126a33d2ac9f0bd273..0a7ddd4c5b1b27b186bbb7b41d441ba3054708a9 100644 (file)
@@ -5,6 +5,7 @@ import sys
 import unittest
 import pickle
 import weakref
+import errno
 
 from test.support import (TESTFN, unlink, run_unittest, captured_output,
                           gc_collect, cpython_only)
@@ -849,6 +850,13 @@ class ExceptionTests(unittest.TestCase):
             self.fail("RuntimeError not raised")
         self.assertEqual(wr(), None)
 
+    def test_errno_ENOTDIR(self):
+        # Issue #12802: "not a directory" errors are ENOTDIR even on Windows
+        with self.assertRaises(OSError) as cm:
+            os.listdir(__file__)
+        self.assertEqual(cm.exception.errno, errno.ENOTDIR, cm.exception)
+
+
 def test_main():
     run_unittest(ExceptionTests)
 
index 4df888f4c7ce93574ccda691e6de32324165e190..b17c58f4d0330b12737c602247209253ef355233 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.
 
index d225aa4311f144a33e166b0b426f4271c3e3b924..8dde31c81c3398db0c8d3684daa7b9c301950055 100644 (file)
@@ -72,6 +72,7 @@ int winerror_to_errno(int winerror)
         case 202: return 8;
         case 206: return 2;
         case 215: return 11;
+        case 267: return 20;
         case 1816: return 12;
         default: return EINVAL;
     }
index bf1081b74497a6b36df0fda4b0c119be4209760d..0323cd4a08d429735d71ad93e52b856b6fc3723c 100644 (file)
@@ -1,3 +1,6 @@
+#include <windows.h>
+#include <fcntl.h>
+#include <io.h>
 #include <stdio.h>
 #include <errno.h>
 
@@ -6,15 +9,21 @@
 int main()
 {
     int i;
+    _setmode(fileno(stdout), O_BINARY);
     printf("/* Generated file. Do not edit. */\n");
     printf("int winerror_to_errno(int winerror)\n");
-    printf("{\n\tswitch(winerror) {\n");
+    printf("{\n    switch(winerror) {\n");
     for(i=1; i < 65000; i++) {
         _dosmaperr(i);
-        if (errno == EINVAL)
-            continue;
-        printf("\t\tcase %d: return %d;\n", i, errno);
+        if (errno == EINVAL) {
+            /* Issue #12802 */
+            if (i == ERROR_DIRECTORY)
+                errno = ENOTDIR;
+            else
+                continue;
+        }
+        printf("        case %d: return %d;\n", i, errno);
     }
-    printf("\t\tdefault: return EINVAL;\n");
-    printf("\t}\n}\n");
+    printf("        default: return EINVAL;\n");
+    printf("    }\n}\n");
 }