summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-08-17 21:15:00 +0000
committerAntoine Pitrou <solipsis@pitrou.net>2010-08-17 21:15:00 +0000
commit30c405171a489d17be857a372a80d80c43a69fd1 (patch)
tree280a11d1be6559439b46b1883030f20f1371a227
parentdc7666b7e8e88f0036d09465d32745fc0be87b7e (diff)
downloadcpython-30c405171a489d17be857a372a80d80c43a69fd1.tar.gz
Add versionadded tags
-rw-r--r--Doc/library/gzip.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/gzip.rst b/Doc/library/gzip.rst
index 060f48e797..9958638785 100644
--- a/Doc/library/gzip.rst
+++ b/Doc/library/gzip.rst
@@ -88,11 +88,15 @@ The module defines the following items:
the compressed data. *compresslevel* has the same meaning as in
the :class:`GzipFile` constructor above.
+ .. versionadded:: 3.2
+
.. function:: decompress(data)
Decompress the *data*, returning a :class:`bytes` object containing the
uncompressed data.
+ .. versionadded:: 3.2
+
.. _gzip-usage-examples: