diff options
author | Hynek Schlawack <hs@ox.cx> | 2012-05-22 08:27:40 (GMT) |
---|---|---|
committer | Hynek Schlawack <hs@ox.cx> | 2012-05-22 08:27:40 (GMT) |
commit | e58ce01f303c8e0a7ddf008abc365cfe6fb4416c (patch) | |
tree | 4a06bd6c073810b2def83534787ec7d56fd672c6 /Doc/library/shutil.rst | |
parent | ed8cf7a543b3ebe2d61c16d0f87e60029fd2c478 (diff) | |
download | cpython-e58ce01f303c8e0a7ddf008abc365cfe6fb4416c.zip cpython-e58ce01f303c8e0a7ddf008abc365cfe6fb4416c.tar.gz cpython-e58ce01f303c8e0a7ddf008abc365cfe6fb4416c.tar.bz2 |
#14804: Remove [] around optional arguments with default values
Mostly just mechanical removal of []. In some rare cases I've pulled the
default value up into the argument list.
Diffstat (limited to 'Doc/library/shutil.rst')
-rw-r--r-- | Doc/library/shutil.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/shutil.rst b/Doc/library/shutil.rst index 31231b6..a1e1696 100644 --- a/Doc/library/shutil.rst +++ b/Doc/library/shutil.rst @@ -96,7 +96,7 @@ Directory and files operations .. versionadded:: 2.6 -.. function:: copytree(src, dst[, symlinks=False[, ignore=None]]) +.. function:: copytree(src, dst, symlinks=False, ignore=None) Recursively copy an entire directory tree rooted at *src*. The destination directory, named by *dst*, must not already exist; it will be created as |