summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libuserdict.tex
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-09-09 03:23:50 (GMT)
committerFred Drake <fdrake@acm.org>2000-09-09 03:23:50 (GMT)
commit621d2bee1cfb1ca01f07a54544d969184c9e552a (patch)
tree1128f902a976a62351bb261618ec48d829f370e6 /Doc/lib/libuserdict.tex
parent1c258036474b70c8c59c0be62cb8b97f94463fe3 (diff)
downloadcpython-621d2bee1cfb1ca01f07a54544d969184c9e552a.zip
cpython-621d2bee1cfb1ca01f07a54544d969184c9e552a.tar.gz
cpython-621d2bee1cfb1ca01f07a54544d969184c9e552a.tar.bz2
Move description of UserString.MutableString to a location more typical
of the arrangement of other modules.
Diffstat (limited to 'Doc/lib/libuserdict.tex')
-rw-r--r--Doc/lib/libuserdict.tex18
1 files changed, 9 insertions, 9 deletions
diff --git a/Doc/lib/libuserdict.tex b/Doc/lib/libuserdict.tex
index 51b7f55..a27755a 100644
--- a/Doc/lib/libuserdict.tex
+++ b/Doc/lib/libuserdict.tex
@@ -92,15 +92,6 @@ an instance of \class{UserString} (or a subclass) or an arbitrary sequence
which can be converted into a string.
\end{classdesc}
-In addition to supporting the methods and operations of string or
-Unicode objects (see section \ref{typesseq}), \class{UserString} instances
-provide the following attribute:
-
-\begin{memberdesc}{data}
-A real Python string or Unicode object used to store the content of the
-\class{UserString} class.
-\end{memberdesc}
-
\begin{classdesc}{MutableString}{\optional{sequence}}
This class is derived from the \class{UserString} above and redefines
strings to be \emph{mutable}. Mutable strings can't be used as
@@ -111,3 +102,12 @@ example for inheritance and necessity to remove (override) the
mutable object as dictionary key, which would be otherwise very
error prone and hard to track down.
\end{classdesc}
+
+In addition to supporting the methods and operations of string or
+Unicode objects (see section \ref{typesseq}), \class{UserString} instances
+provide the following attribute:
+
+\begin{memberdesc}{data}
+A real Python string or Unicode object used to store the content of the
+\class{UserString} class.
+\end{memberdesc}