diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-01-13 09:17:24 -0500 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-01-13 09:17:24 -0500 |
commit | 82f34ada45f96c13eb68927d6beccdcbab2c77b3 (patch) | |
tree | 136839c19a7d640d61b84b04129a76e0063b87ba /Doc/distutils | |
parent | Issue #23209, #23225: selectors.BaseSelector.close() now clears its internal (diff) | |
download | cpython-82f34ada45f96c13eb68927d6beccdcbab2c77b3.tar.gz cpython-82f34ada45f96c13eb68927d6beccdcbab2c77b3.tar.bz2 cpython-82f34ada45f96c13eb68927d6beccdcbab2c77b3.zip |
fix instances of consecutive articles (closes #23221)
Patch by Karan Goel.
Diffstat (limited to 'Doc/distutils')
-rw-r--r-- | Doc/distutils/apiref.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst index fff06416b2c..82bed249836 100644 --- a/Doc/distutils/apiref.rst +++ b/Doc/distutils/apiref.rst @@ -964,7 +964,7 @@ directories. .. function:: create_tree(base_dir, files[, mode=0o777, verbose=0, dry_run=0]) Create all the empty directories under *base_dir* needed to put *files* there. - *base_dir* is just the a name of a directory which doesn't necessarily exist + *base_dir* is just the name of a directory which doesn't necessarily exist yet; *files* is a list of filenames to be interpreted relative to *base_dir*. *base_dir* + the directory portion of every file in *files* will be created if it doesn't already exist. *mode*, *verbose* and *dry_run* flags are as for |