summaryrefslogtreecommitdiffstats
path: root/Doc/library/shutil.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/shutil.rst')
-rw-r--r--Doc/library/shutil.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/shutil.rst b/Doc/library/shutil.rst
index 9dc0469..2d1e585 100644
--- a/Doc/library/shutil.rst
+++ b/Doc/library/shutil.rst
@@ -236,7 +236,7 @@ Archives operations
*owner* and *group* are used when creating a tar archive. By default,
uses the current owner and group.
- .. versionadded:: 2.7
+ .. versionadded:: 3.2
.. function:: get_archive_formats()
@@ -255,7 +255,7 @@ Archives operations
You can register new formats or provide your own archiver for any existing
formats, by using :func:`register_archive_format`.
- .. versionadded:: 2.7
+ .. versionadded:: 3.2
.. function:: register_archive_format(name, function, [extra_args, [description]])
@@ -269,14 +269,14 @@ Archives operations
*description* is used by :func:`get_archive_formats` which returns the
list of archivers. Defaults to an empty list.
- .. versionadded:: 2.7
+ .. versionadded:: 3.2
.. function:: unregister_archive_format(name)
Remove the archive format *name* from the list of supported formats.
- .. versionadded:: 2.7
+ .. versionadded:: 3.2
Archiving example