[Python-checkins] CVS: python/dist/src/Doc/lib libuserdict.tex,1.15,1.16

Fred L. Drake python-dev@python.org
Fri, 8 Sep 2000 20:23:54 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv11163/lib

Modified Files:
	libuserdict.tex 
Log Message:

Move description of UserString.MutableString to a location more typical
of the arrangement of other modules.


Index: libuserdict.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libuserdict.tex,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -r1.15 -r1.16
*** libuserdict.tex	2000/07/16 19:01:10	1.15
--- libuserdict.tex	2000/09/09 03:23:50	1.16
***************
*** 93,105 ****
  \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
--- 93,96 ----
***************
*** 112,113 ****
--- 103,113 ----
  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}