diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2010-03-13 00:26:04 (GMT) |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2010-03-13 00:26:04 (GMT) |
commit | 9e7ce59a938ab5d35b56ccae763e2537211925c6 (patch) | |
tree | b841742261882809182005decb25d56e50a2987a /Doc | |
parent | 08b36bdab44eaf6fb041780f6be967105e8c722c (diff) | |
download | cpython-9e7ce59a938ab5d35b56ccae763e2537211925c6.zip cpython-9e7ce59a938ab5d35b56ccae763e2537211925c6.tar.gz cpython-9e7ce59a938ab5d35b56ccae763e2537211925c6.tar.bz2 |
Merged revisions 78887 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r78887 | ezio.melotti | 2010-03-13 02:15:36 +0200 (Sat, 13 Mar 2010) | 1 line
fix broken links
........
Diffstat (limited to 'Doc')
-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 b3a3215..6f01dd3 100644 --- a/Doc/library/bz2.rst +++ b/Doc/library/bz2.rst @@ -18,9 +18,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; |