summaryrefslogtreecommitdiffstats
path: root/Doc/library/shutil.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-03-21 07:16:43 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-03-21 07:16:43 (GMT)
commitf8754a60a80f255a18ad00ec6eac8764871ceca8 (patch)
treee6e5dc51044103973e3f5b2506f8e0d568426045 /Doc/library/shutil.rst
parent75634948771e3329fea1675cdac409bfa0893992 (diff)
downloadcpython-f8754a60a80f255a18ad00ec6eac8764871ceca8.zip
cpython-f8754a60a80f255a18ad00ec6eac8764871ceca8.tar.gz
cpython-f8754a60a80f255a18ad00ec6eac8764871ceca8.tar.bz2
Update versionadded/changed.
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