From: Antoine Pitrou Date: Tue, 17 Aug 2010 21:15:00 +0000 (+0000) Subject: Add versionadded tags X-Git-Tag: v3.2a2~241 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cdfe1c54fc528f4c4688bbd5a2b839f0f799f6e7;p=thirdparty%2FPython%2Fcpython.git Add versionadded tags --- diff --git a/Doc/library/gzip.rst b/Doc/library/gzip.rst index 060f48e797a0..9958638785e8 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: