diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-03-13 00:15:36 +0000 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-03-13 00:15:36 +0000 |
commit | c4785a75479d420d7cfa50445f34dabb1bf50d7d (patch) | |
tree | 02fca589ee61e60872af04a0129df9f7f90f57c7 | |
parent | 17d905449d485c12268ce659f0c2542cd5386e05 (diff) | |
download | cpython-git-c4785a75479d420d7cfa50445f34dabb1bf50d7d.tar.gz |
fix broken links
-rw-r--r-- | Doc/library/bz2.rst | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/bz2.rst b/Doc/library/bz2.rst index fa6d762394..ed281bd72c 100644 --- a/Doc/library/bz2.rst +++ b/Doc/library/bz2.rst @@ -20,9 +20,10 @@ For other archive formats, see the :mod:`gzip`, :mod:`zipfile`, and Here is a summary of the features offered by the bz2 module: * :class:`BZ2File` class implements a complete file interface, including - :meth:`readline`, :meth:`readlines`, :meth:`writelines`, :meth:`seek`, etc; + :meth:`~BZ2File.readline`, :meth:`~BZ2File.readlines`, + :meth:`~BZ2File.writelines`, :meth:`~BZ2File.seek`, etc; -* :class:`BZ2File` class implements emulated :meth:`seek` support; +* :class:`BZ2File` class implements emulated :meth:`~BZ2File.seek` support; * :class:`BZ2File` class implements universal newline support; |