diff options
author | Fred Drake <fdrake@acm.org> | 2004-07-26 16:33:29 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2004-07-26 16:33:29 (GMT) |
commit | fdccf1ad6ea12e666daea61280ec6e86f16cdad7 (patch) | |
tree | 584eeb13b547cc8d7c620e74dc2cbfdfa7511626 /Doc/lib/libbsddb.tex | |
parent | c8ae31dcbd20933abc2aadb4ab62aa8e99c81bf5 (diff) | |
download | cpython-fdccf1ad6ea12e666daea61280ec6e86f16cdad7.zip cpython-fdccf1ad6ea12e666daea61280ec6e86f16cdad7.tar.gz cpython-fdccf1ad6ea12e666daea61280ec6e86f16cdad7.tar.bz2 |
fix information about what flag database files are opened with by default
Diffstat (limited to 'Doc/lib/libbsddb.tex')
-rw-r--r-- | Doc/lib/libbsddb.tex | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/lib/libbsddb.tex b/Doc/lib/libbsddb.tex index b17596c..bb1e6b0 100644 --- a/Doc/lib/libbsddb.tex +++ b/Doc/lib/libbsddb.tex @@ -46,8 +46,8 @@ Open the hash format file named \var{filename}. Files never intended to be preserved on disk may be created by passing \code{None} as the \var{filename}. The optional \var{flag} identifies the mode used to open the file. It may be -\character{r} (read only, default), \character{w} (read-write) , -\character{c} (read-write - create if necessary) or +\character{r} (read only), \character{w} (read-write) , +\character{c} (read-write - create if necessary; the default) or \character{n} (read-write - truncate to zero length). The other arguments are rarely used and are just passed to the low-level \cfunction{dbopen()} function. Consult the Berkeley DB documentation @@ -62,8 +62,8 @@ Open the btree format file named \var{filename}. Files never intended to be preserved on disk may be created by passing \code{None} as the \var{filename}. The optional \var{flag} identifies the mode used to open the file. It may be -\character{r} (read only, default), \character{w} (read-write), -\character{c} (read-write - create if necessary) or +\character{r} (read only), \character{w} (read-write), +\character{c} (read-write - create if necessary; the default) or \character{n} (read-write - truncate to zero length). The other arguments are rarely used and are just passed to the low-level dbopen function. Consult the Berkeley DB documentation for their use and @@ -78,8 +78,8 @@ Open a DB record format file named \var{filename}. Files never intended to be preserved on disk may be created by passing \code{None} as the \var{filename}. The optional \var{flag} identifies the mode used to open the file. It may be -\character{r} (read only, default), \character{w} (read-write), -\character{c} (read-write - create if necessary) or +\character{r} (read only), \character{w} (read-write), +\character{c} (read-write - create if necessary; the default) or \character{n} (read-write - truncate to zero length). The other arguments are rarely used and are just passed to the low-level dbopen function. Consult the Berkeley DB documentation for their use and |