[3.12] Move "format" param doc of shutil.make_archive() on its own paragraph (GH-103829) (GH-114897)

(cherry picked from commit 53339a0ef7)

Co-authored-by: Michal Kaptur <kaptur.michal@gmail.com>
This commit is contained in:
Miss Islington (bot) 2024-02-02 11:28:32 +01:00 committed by GitHub
parent cc5870a1d7
commit 8cb7e5cc7c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -580,7 +580,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).