diff options
author | Fred Drake <fdrake@acm.org> | 1997-12-15 21:56:05 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1997-12-15 21:56:05 (GMT) |
commit | 54820dc8e4db15bd30c4b2f650d79cd0fb96f76b (patch) | |
tree | e21ef93287768da2f4516ced6ab8e4f82ac8168c /Doc/lib/libpickle.tex | |
parent | 6206394a4b42a22845713f9971923613eb6c8203 (diff) | |
download | cpython-54820dc8e4db15bd30c4b2f650d79cd0fb96f76b.zip cpython-54820dc8e4db15bd30c4b2f650d79cd0fb96f76b.tar.gz cpython-54820dc8e4db15bd30c4b2f650d79cd0fb96f76b.tar.bz2 |
Fixed index references to modules.
Diffstat (limited to 'Doc/lib/libpickle.tex')
-rw-r--r-- | Doc/lib/libpickle.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/lib/libpickle.tex b/Doc/lib/libpickle.tex index 110a074..508e50d 100644 --- a/Doc/lib/libpickle.tex +++ b/Doc/lib/libpickle.tex @@ -25,7 +25,7 @@ byte streams is to write them onto a file, but it is also conceivable to send them across a network or store them in a database. The module \code{shelve} provides a simple interface to pickle and unpickle objects on ``dbm''-style database files. -\stmodindex{shelve} +\refstmodindex{shelve} \strong{Note:} The \code{pickle} module is rather slow. A reimplementation of the same algorithm in C, which is up to 1000 times @@ -36,7 +36,7 @@ inheritance). Unlike the built-in module \code{marshal}, \code{pickle} handles the following correctly: -\stmodindex{marshal} +\refbimodindex{marshal} \begin{itemize} @@ -74,7 +74,7 @@ it should, but there's probably no great need for it right now (as long as \code{marshal} continues to be used for reading and writing code objects), and at least this avoids the possibility of smuggling Trojan horses into a program. -\stmodindex{marshal} +\refbimodindex{marshal} For the benefit of persistency modules written using \code{pickle}, it supports the notion of a reference to an object outside the pickled |