]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Move description of UserString.MutableString to a location more typical
authorFred Drake <fdrake@acm.org>
Sat, 9 Sep 2000 03:23:50 +0000 (03:23 +0000)
committerFred Drake <fdrake@acm.org>
Sat, 9 Sep 2000 03:23:50 +0000 (03:23 +0000)
of the arrangement of other modules.

Doc/lib/libuserdict.tex

index 51b7f5573f5f24220365d012dd5d473f4ad21d7a..a27755aff2f9806d1bfd6b3775dd47027f015826 100644 (file)
@@ -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}