diff options
author | Raymond Hettinger <python@rcn.com> | 2004-12-04 10:50:51 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-12-04 10:50:51 (GMT) |
commit | 784ab76c873496daac30b4ab9e6afd2800762072 (patch) | |
tree | 94184a18ff7f165562eab08022a6ad1b193bbc01 /Doc/tut | |
parent | 2238fc6b677297e3c6370fa3ef728256a34f40ce (diff) | |
download | cpython-784ab76c873496daac30b4ab9e6afd2800762072.zip cpython-784ab76c873496daac30b4ab9e6afd2800762072.tar.gz cpython-784ab76c873496daac30b4ab9e6afd2800762072.tar.bz2 |
Remove the deprecated whrandom module.
Diffstat (limited to 'Doc/tut')
-rw-r--r-- | Doc/tut/tut.tex | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index aae2763..03efeb1 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -4653,7 +4653,7 @@ supplies classes for manipulating dates and times in both simple and complex ways. While date and time arithmetic is supported, the focus of the implementation is on efficient member extraction for output formatting and manipulation. The module also supports objects -that are time zone aware. +that are timezone aware. \begin{verbatim} # dates are easily constructed and formatted @@ -4777,7 +4777,7 @@ packages. For example: \item The \ulink{\module{xmlrpclib}}{../lib/module-xmlrpclib.html} and \ulink{\module{SimpleXMLRPCServer}}{../lib/module-SimpleXMLRPCServer.html} modules make implementing remote procedure calls into an almost trivial task. - Despite the names, no direct knowledge or handling of XML is needed. + Despite the modules names, no direct knowledge or handling of XML is needed. \item The \ulink{\module{email}}{../lib/module-email.html} package is a library for managing email messages, including MIME and other RFC 2822-based message documents. Unlike \module{smptlib} and \module{poplib} which actually send @@ -4805,9 +4805,9 @@ programming needs. These modules rarely occur in small scripts. \section{Output Formatting\label{output-formatting}} -The \ulink{\module{repr}}{../lib/module-repr.html} module provides an -version of \function{repr()} for abbreviated displays of large or deeply -nested containers: +The \ulink{\module{repr}}{../lib/module-repr.html} module provides a +version of \function{repr()} customized for abbreviated displays of large +or deeply nested containers: \begin{verbatim} >>> import repr @@ -5097,7 +5097,7 @@ with different performance trade-offs. The \ulink{\module{array}}{../lib/module-array.html} module provides an \class{array()} object that is like a list that stores only homogenous -data but stores it more compactly. The following example shows an array +data and stores it more compactly. The following example shows an array of numbers stored as two byte unsigned binary numbers (typecode \code{"H"}) rather than the usual 16 bytes per entry for regular lists of python int objects: |