diff options
author | Georg Brandl <georg@python.org> | 2006-02-17 11:51:41 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-02-17 11:51:41 (GMT) |
commit | bcd548bdb2f40bd739c6ff40f5903c74c190bc23 (patch) | |
tree | 829fb5125bf35e7b380959ba321b9e06b1b7fb8e /Doc/lib/libundoc.tex | |
parent | b86a54f395f734d5e7f24c6ac14225c5b77dcc1f (diff) | |
download | cpython-bcd548bdb2f40bd739c6ff40f5903c74c190bc23.zip cpython-bcd548bdb2f40bd739c6ff40f5903c74c190bc23.tar.gz cpython-bcd548bdb2f40bd739c6ff40f5903c74c190bc23.tar.bz2 |
Update "undocumented modules" section.
Diffstat (limited to 'Doc/lib/libundoc.tex')
-rw-r--r-- | Doc/lib/libundoc.tex | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/Doc/lib/libundoc.tex b/Doc/lib/libundoc.tex index 8e99393..6cef183 100644 --- a/Doc/lib/libundoc.tex +++ b/Doc/lib/libundoc.tex @@ -134,6 +134,9 @@ now just as good). \item[\module{poly}] --- Polynomials. +\item[\module{rand}] +--- Old interface to the random number generator. + \item[\module{regex}] --- Emacs-style regular expression support; may still be used in some old code (extension module). Refer to the @@ -146,6 +149,10 @@ with \module{regex} (extension module). Refer to the \citetitle[http://www.python.org/doc/1.6/lib/module-regsub.html]{Python 1.6 Documentation} for documentation. +\item[\module{statcache}] +--- Caches the results of os.stat(). Using the cache can be fragile +and error-prone, just use \code{os.stat()} directly. + \item[\module{tb}] --- Print tracebacks, with a dump of local variables (use \function{pdb.pm()} or \refmodule{traceback} instead). @@ -165,6 +172,9 @@ not set). \item[\module{whatsound}] --- Recognize sound files; use \refmodule{sndhdr} instead. +\item[\module{whrandom}] +--- Old random number generator. Use \module{random} instead. + \item[\module{zmod}] --- Compute properties of mathematical ``fields.'' \end{description} @@ -195,14 +205,6 @@ archive. --- Import modules in ``packages.'' Basic package support is now built in. The built-in support is very similar to what is provided in this module. - -\item[\module{rand}] ---- Old interface to the random number generator. - -\item[\module{soundex}] ---- Algorithm for collapsing names which sound similar to a shared -key. The specific algorithm doesn't seem to match any published -algorithm. (This is an extension module.) \end{description} |