Commit 8b463933 authored by Zachary Ware's avatar Zachary Ware

Fix parameter name in docs for os.makedirs and os.removedirs.

Pointed out by Colin Davis on docs@.
parent e0cf3e36
...@@ -1607,7 +1607,7 @@ features: ...@@ -1607,7 +1607,7 @@ features:
The *dir_fd* argument. The *dir_fd* argument.
.. function:: makedirs(path, mode=0o777, exist_ok=False) .. function:: makedirs(name, mode=0o777, exist_ok=False)
.. index:: .. index::
single: directory; creating single: directory; creating
...@@ -1763,7 +1763,7 @@ features: ...@@ -1763,7 +1763,7 @@ features:
The *dir_fd* argument. The *dir_fd* argument.
.. function:: removedirs(path) .. function:: removedirs(name)
.. index:: single: directory; deleting .. index:: single: directory; deleting
......
...@@ -216,7 +216,7 @@ def _get_masked_mode(mode): ...@@ -216,7 +216,7 @@ def _get_masked_mode(mode):
# (Inspired by Eric Raymond; the doc strings are mostly his) # (Inspired by Eric Raymond; the doc strings are mostly his)
def makedirs(name, mode=0o777, exist_ok=False): def makedirs(name, mode=0o777, exist_ok=False):
"""makedirs(path [, mode=0o777][, exist_ok=False]) """makedirs(name [, mode=0o777][, exist_ok=False])
Super-mkdir; create a leaf directory and all intermediate ones. Super-mkdir; create a leaf directory and all intermediate ones.
Works like mkdir, except that any intermediate path segment (not Works like mkdir, except that any intermediate path segment (not
...@@ -260,7 +260,7 @@ def makedirs(name, mode=0o777, exist_ok=False): ...@@ -260,7 +260,7 @@ def makedirs(name, mode=0o777, exist_ok=False):
raise raise
def removedirs(name): def removedirs(name):
"""removedirs(path) """removedirs(name)
Super-rmdir; remove a leaf directory and all empty intermediate Super-rmdir; remove a leaf directory and all empty intermediate
ones. Works like rmdir except that, if the leaf directory is ones. Works like rmdir except that, if the leaf directory is
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment