diff options
author | Facundo Batista <facundobatista@gmail.com> | 2008-01-07 16:49:02 (GMT) |
---|---|---|
committer | Facundo Batista <facundobatista@gmail.com> | 2008-01-07 16:49:02 (GMT) |
commit | d0dcbc4ba235e961893bf91face9fe9f9379f054 (patch) | |
tree | 80a8064e5f26c4f65d5725ddefb2e6192b2db498 /Lib/os.py | |
parent | 6e3e6e0d77896106071d35a616a07cd19a71703f (diff) | |
download | cpython-d0dcbc4ba235e961893bf91face9fe9f9379f054.zip cpython-d0dcbc4ba235e961893bf91face9fe9f9379f054.tar.gz cpython-d0dcbc4ba235e961893bf91face9fe9f9379f054.tar.bz2 |
Backport of issue 1755179 fix.
Diffstat (limited to 'Lib/os.py')
-rw-r--r-- | Lib/os.py | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -23,7 +23,7 @@ and opendir), and leave all pathname manipulation to os.path #' -import sys +import sys, errno _names = sys.builtin_module_names @@ -156,7 +156,6 @@ def makedirs(name, mode=0777): recursive. """ - from errno import EEXIST head, tail = path.split(name) if not tail: head, tail = path.split(head) @@ -165,7 +164,7 @@ def makedirs(name, mode=0777): makedirs(head, mode) except OSError, e: # be happy if someone already created the path - if e.errno != EEXIST: + if e.errno != errno.EEXIST: raise if tail == curdir: # xxx/newdir/. exists if xxx/newdir exists return @@ -365,8 +364,6 @@ def execvpe(file, args, env): __all__.extend(["execl","execle","execlp","execlpe","execvp","execvpe"]) def _execvpe(file, args, env=None): - from errno import ENOENT, ENOTDIR - if env is not None: func = execve argrest = (args, env) @@ -392,7 +389,7 @@ def _execvpe(file, args, env=None): func(fullname, *argrest) except error, e: tb = sys.exc_info()[2] - if (e.errno != ENOENT and e.errno != ENOTDIR + if (e.errno != errno.ENOENT and e.errno != errno.ENOTDIR and saved_exc is None): saved_exc = e saved_tb = tb |