diff options
author | Georg Brandl <georg@python.org> | 2009-01-02 20:25:14 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-01-02 20:25:14 (GMT) |
commit | fc29f27c162a236d2d879ab3fb803110628a0ccf (patch) | |
tree | cc68b3ee5ebf96d0e63161394c80a499f21ecae5 /Doc/library/gzip.rst | |
parent | 511048673f8635b12f683eb9fc09f42c8ab871c7 (diff) | |
download | cpython-fc29f27c162a236d2d879ab3fb803110628a0ccf.zip cpython-fc29f27c162a236d2d879ab3fb803110628a0ccf.tar.gz cpython-fc29f27c162a236d2d879ab3fb803110628a0ccf.tar.bz2 |
#4811: fix markup glitches (mostly remains of the conversion),
found by Gabriel Genellina.
Diffstat (limited to 'Doc/library/gzip.rst')
-rw-r--r-- | Doc/library/gzip.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/gzip.rst b/Doc/library/gzip.rst index 86be3cd..c6f9ef8 100644 --- a/Doc/library/gzip.rst +++ b/Doc/library/gzip.rst @@ -7,7 +7,7 @@ This module provides a simple interface to compress and decompress files just like the GNU programs :program:`gzip` and :program:`gunzip` would. -The data compression is provided by the :mod:``zlib`` module. +The data compression is provided by the :mod:`zlib` module. The :mod:`gzip` module provides the :class:`GzipFile` class which is modeled after Python's File Object. The :class:`GzipFile` class reads and writes |