summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libdbhash.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>1999-04-16 14:03:32 (GMT)
committerFred Drake <fdrake@acm.org>1999-04-16 14:03:32 (GMT)
commit31bfbc6bff68f4305d80233468e42e65b12ca852 (patch)
tree1e5e6911dec116ea237c929d9e99e68e5b7fd164 /Doc/lib/libdbhash.tex
parent511281ac00691f4b68d1606c65b9e732391feebc (diff)
downloadcpython-31bfbc6bff68f4305d80233468e42e65b12ca852.zip
cpython-31bfbc6bff68f4305d80233468e42e65b12ca852.tar.gz
cpython-31bfbc6bff68f4305d80233468e42e65b12ca852.tar.bz2
Minor nits, include author info.
Diffstat (limited to 'Doc/lib/libdbhash.tex')
-rw-r--r--Doc/lib/libdbhash.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libdbhash.tex b/Doc/lib/libdbhash.tex
index e2ac326..9ad031c 100644
--- a/Doc/lib/libdbhash.tex
+++ b/Doc/lib/libdbhash.tex
@@ -4,6 +4,7 @@
\declaremodule{standard}{dbhash}
\platform{Unix, Windows}
\modulesynopsis{DBM-style interface to the BSD database library.}
+\sectionauthor{Fred L. Drake, Jr.}{fdrake@acm.org}
The \module{dbhash} module provides a function to open databases using
@@ -25,8 +26,7 @@ This module provides an exception and a function:
\var{path} argument is the name of the database file.
The \var{flag} argument can be
- \code{'r'} (to open an existing database for reading only --- default),
- \code{'w'} (to open an existing database for reading and writing),
+ \code{'r'} (the default), \code{'w'},
\code{'c'} (which creates the database if it doesn't exist), or
\code{'n'} (which always creates a new empty database).
For platforms on which the BSD \code{db} library supports locking,