summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libuserdict.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-10-10 22:00:03 (GMT)
committerFred Drake <fdrake@acm.org>2000-10-10 22:00:03 (GMT)
commit2c4f554b7863ac47b8e10dd4a942bb7bc3e6b3e3 (patch)
treebecacb0e5705244d69459c0a3057b3f5ec64ab0f /Doc/lib/libuserdict.tex
parente693df94ed50e5083742b8c3bcb490c6b7fe03ac (diff)
downloadcpython-2c4f554b7863ac47b8e10dd4a942bb7bc3e6b3e3.zip
cpython-2c4f554b7863ac47b8e10dd4a942bb7bc3e6b3e3.tar.gz
cpython-2c4f554b7863ac47b8e10dd4a942bb7bc3e6b3e3.tar.bz2
Fixed a large number of small problems, mostly noted by Detlef Lannert
<lannert@lannert.rz.uni-duesseldorf.de>.
Diffstat (limited to 'Doc/lib/libuserdict.tex')
-rw-r--r--Doc/lib/libuserdict.tex6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/lib/libuserdict.tex b/Doc/lib/libuserdict.tex
index 50d52fa..0285380 100644
--- a/Doc/lib/libuserdict.tex
+++ b/Doc/lib/libuserdict.tex
@@ -13,7 +13,7 @@ can add new behaviors to dictionaries.
The \module{UserDict} module defines the \class{UserDict} class:
\begin{classdesc}{UserDict}{\optional{initialdata}}
-Return a class instance that simulates a dictionary. The instance's
+Class that simulates a dictionary. The instance's
contents are kept in a regular dictionary, which is accessible via the
\member{data} attribute of \class{UserDict} instances. If
\var{initialdata} is provided, \member{data} is initialized with its
@@ -47,7 +47,7 @@ can add new behaviors to lists.
The \module{UserList} module defines the \class{UserList} class:
\begin{classdesc}{UserList}{\optional{list}}
-Return a class instance that simulates a list. The instance's
+Class that simulates a list. The instance's
contents are kept in a regular list, which is accessible via the
\member{data} attribute of \class{UserList} instances. The instance's
contents are initially set to a copy of \var{list}, defaulting to the
@@ -104,7 +104,7 @@ to real string or Unicode objects; this is especially the case for
The \module{UserString} module defines the following classes:
\begin{classdesc}{UserString}{\optional{sequence}}
-Return a class instance that simulates a string or a Unicode string
+Class that simulates a string or a Unicode string
object. The instance's content is kept in a regular string or Unicode
string object, which is accessible via the \member{data} attribute of
\class{UserString} instances. The instance's contents are initially