diff options
author | Fred Drake <fdrake@acm.org> | 2000-10-11 18:56:00 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-10-11 18:56:00 (GMT) |
commit | 6fe9bacb8c12c0382a299e852536b87a825ac905 (patch) | |
tree | 5ecbba524940d2d13e149243702cc089ff63b371 /Doc | |
parent | 0a7af4058f9f3f673e438e5e2cfc31d4dc04be98 (diff) | |
download | cpython-6fe9bacb8c12c0382a299e852536b87a825ac905.zip cpython-6fe9bacb8c12c0382a299e852536b87a825ac905.tar.gz cpython-6fe9bacb8c12c0382a299e852536b87a825ac905.tar.bz2 |
Make sure methods of ZipFile objects are in alphabetical order; the logical
groupings are still maintained. Based on a comment by Steve Holden
<sholden@holdenweb.com>.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libzipfile.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libzipfile.tex b/Doc/lib/libzipfile.tex index 01b010f..2f2f562 100644 --- a/Doc/lib/libzipfile.tex +++ b/Doc/lib/libzipfile.tex @@ -111,16 +111,16 @@ cat myzip.zip >> python.exe member \var{name}. \end{methoddesc} -\begin{methoddesc}{namelist}{} - Return a list of archive members by name. -\end{methoddesc} - \begin{methoddesc}{infolist}{} Return a list containing a \class{ZipInfo} object for each member of the archive. The objects are in the same order as their entries in the actual ZIP file on disk if an existing archive was opened. \end{methoddesc} +\begin{methoddesc}{namelist}{} + Return a list of archive members by name. +\end{methoddesc} + \begin{methoddesc}{printdir}{} Print a table of contents for the archive to \code{sys.stdout}. \end{methoddesc} |