summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/os.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/os.py b/Lib/os.py
index 8e1e4f0..59c3895 100644
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -126,6 +126,8 @@ def makedirs(name, mode=0777):
"""
head, tail = path.split(name)
+ if not tail:
+ head, tail = path.split(head)
if head and tail and not path.exists(head):
makedirs(head, mode)
mkdir(name, mode)
@@ -143,6 +145,8 @@ def removedirs(name):
"""
rmdir(name)
head, tail = path.split(name)
+ if not tail:
+ head, tail = path.split(head)
while head and tail:
try:
rmdir(head)