diff options
author | Guido van Rossum <guido@python.org> | 1995-04-10 11:34:00 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-04-10 11:34:00 (GMT) |
commit | 96628a90c47f15f357b31d665a4222d175e17b27 (patch) | |
tree | 74d6ef8384b587b2526d7c24adbf2f7d4e77bc93 /Doc/lib/libdbm.tex | |
parent | eae3f73b1c86fecfcb3d2b5599a5efd5ddf87306 (diff) | |
download | cpython-96628a90c47f15f357b31d665a4222d175e17b27.zip cpython-96628a90c47f15f357b31d665a4222d175e17b27.tar.gz cpython-96628a90c47f15f357b31d665a4222d175e17b27.tar.bz2 |
typos, layout and other small things
Diffstat (limited to 'Doc/lib/libdbm.tex')
-rw-r--r-- | Doc/lib/libdbm.tex | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/lib/libdbm.tex b/Doc/lib/libdbm.tex index 6e72567..7e004d2 100644 --- a/Doc/lib/libdbm.tex +++ b/Doc/lib/libdbm.tex @@ -18,7 +18,8 @@ raised for general mapping errors like specifying an incorrect key. \begin{funcdesc}{open}{filename\, rwmode\, filemode} Open a dbm database and return a mapping object. \var{filename} is the name of the database file (without the \file{.dir} or \file{.pag} -extensions), \var{rwmode} is \code{'r'}, \code{'w'} or \code{'rw'} as for -\code{open}, and \var{filemode} is the \UNIX{} mode of the file, used only -when the database has to be created. +extensions), \var{rwmode} is \code{'r'}, \code{'w'} or \code{'rw'} to +open the database fore reading, writing or both respectively, +and \var{filemode} is the \UNIX{} mode of the file, used only +when the database has to be created (but to be supplied at all times). \end{funcdesc} |