]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Move "format" param doc of shutil.make_archive() on its own paragraph (GH-103829)
authorMichal Kaptur <kaptur.michal@gmail.com>
Fri, 2 Feb 2024 10:00:18 +0000 (11:00 +0100)
committerGitHub <noreply@github.com>
Fri, 2 Feb 2024 10:00:18 +0000 (10:00 +0000)
Doc/library/shutil.rst

index d9ec2cbc47e6114be2b8567c1384fb315beb4460..7a7dd23177e672194ee221030e32a2a0a29d109e 100644 (file)
@@ -586,7 +586,9 @@ provided.  They rely on the :mod:`zipfile` and :mod:`tarfile` modules.
    Create an archive file (such as zip or tar) and return its name.
 
    *base_name* is the name of the file to create, including the path, minus
-   any format-specific extension. *format* is the archive format: one of
+   any format-specific extension.
+
+   *format* is the archive format: one of
    "zip" (if the :mod:`zlib` module is available), "tar", "gztar" (if the
    :mod:`zlib` module is available), "bztar" (if the :mod:`bz2` module is
    available), or "xztar" (if the :mod:`lzma` module is available).