diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-17 21:15:00 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-17 21:15:00 (GMT) |
commit | cdfe1c54fc528f4c4688bbd5a2b839f0f799f6e7 (patch) | |
tree | 65f5a773f4f8d59ed607809446b1b5dfb344e6a7 /Doc/library | |
parent | bf1a018ce4358af60f3dc41262b04d01091aeebf (diff) | |
download | cpython-cdfe1c54fc528f4c4688bbd5a2b839f0f799f6e7.zip cpython-cdfe1c54fc528f4c4688bbd5a2b839f0f799f6e7.tar.gz cpython-cdfe1c54fc528f4c4688bbd5a2b839f0f799f6e7.tar.bz2 |
Add versionadded tags
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/gzip.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/gzip.rst b/Doc/library/gzip.rst index 060f48e..9958638 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: |