Make internal module references hyperlinks wherever it makes sense.

This commit is contained in:
Fred Drake 1999-04-22 21:23:22 +00:00
parent 7b8b125fa6
commit ffbe68723a
21 changed files with 103 additions and 100 deletions

View file

@ -1,9 +1,9 @@
\section{\module{marshal} ---
Alternate Python object serialization}
\declaremodule{builtin}{marshal}
\declaremodule{builtin}{marshal}
\modulesynopsis{Convert Python objects to streams of bytes and back
(with different constraints).}
(with different constraints).}
This module contains functions that can read and write Python
@ -21,7 +21,7 @@ does).\footnote{The name of this module stems from a bit of
This is not a general ``persistency'' module. For general persistency
and transfer of Python objects through RPC calls, see the modules
\module{pickle} and \module{shelve}. The \module{marshal} module exists
\refmodule{pickle} and \refmodule{shelve}. The \module{marshal} module exists
mainly to support reading and writing the ``pseudo-compiled'' code for
Python modules of \file{.pyc} files.
\refstmodindex{pickle}