Minor fixups

This commit is contained in:
Raymond Hettinger 2003-09-16 21:45:22 +00:00
parent ced69f8a20
commit 3404034a21
2 changed files with 3 additions and 2 deletions

View File

@ -102,7 +102,8 @@ systems which ship with the old Berkeley DB 1.85 database library. The
Once instantiated, hash, btree and record objects support
the same methods as dictionaries. In addition, they support
the following methods:
the methods listed below.
\versionchanged[Added dictionary methods]{2.3.1}
\begin{methoddesc}{close}{}
Close the underlying file. The object can no longer be accessed. Since

View File

@ -73,7 +73,7 @@ methods are available in addition to the standard methods.
\begin{verbatim}
print db.first()
for i in xrange(1, len(d)):
for i in xrange(1, len(db)):
print db.next()
\end{verbatim}
\end{methoddesc}