diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2007-03-14 07:17:40 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2007-03-14 07:17:40 (GMT) |
commit | 859b7c1b8278879007e2891ef961bca9d0c0eb45 (patch) | |
tree | 604d68120144f7dd44f4e110e9b0b4acfebcc01d | |
parent | dcd24ae5015bb94ef83015a4f584e5b8f173e999 (diff) | |
download | cpython-859b7c1b8278879007e2891ef961bca9d0c0eb45.zip cpython-859b7c1b8278879007e2891ef961bca9d0c0eb45.tar.gz cpython-859b7c1b8278879007e2891ef961bca9d0c0eb45.tar.bz2 |
correct order and names of the less often used keyword parameters.
-rw-r--r-- | Doc/lib/libbsddb.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libbsddb.tex b/Doc/lib/libbsddb.tex index e9d7e21..b7fe2ef 100644 --- a/Doc/lib/libbsddb.tex +++ b/Doc/lib/libbsddb.tex @@ -46,10 +46,10 @@ portability, only the first two arguments should be used in most instances. \begin{funcdesc}{hashopen}{filename\optional{, flag\optional{, - mode\optional{, bsize\optional{, + mode\optional{, pgsize\optional{, ffactor\optional{, nelem\optional{, - cachesize\optional{, hash\optional{, - lorder}}}}}}}}} + cachesize\optional{, lorder\optional{, + hflags}}}}}}}}} 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 @@ -80,7 +80,7 @@ interpretation. \begin{funcdesc}{rnopen}{filename\optional{, flag\optional{, mode\optional{, rnflags\optional{, cachesize\optional{, pgsize\optional{, lorder\optional{, -reclen\optional{, bval\optional{, bfname}}}}}}}}}} +rlen\optional{, delim\optional{, source\optional{, pad}}}}}}}}}}} 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 |