[Zodb-checkins] CVS: ZODB3/Doc/guide - modules.tex:1.4

Tim Peters tim.one at comcast.net
Thu May 1 12:53:12 EDT 2003


Update of /cvs-repository/ZODB3/Doc/guide
In directory cvs.zope.org:/tmp/cvs-serv32191

Modified Files:
	modules.tex 
Log Message:
Trimmed trailing whitespace.


=== ZODB3/Doc/guide/modules.tex 1.3 => 1.4 ===
--- ZODB3/Doc/guide/modules.tex:1.3	Fri Oct  4 20:37:12 2002
+++ ZODB3/Doc/guide/modules.tex	Thu May  1 11:53:12 2003
@@ -13,29 +13,29 @@
 
 The \class{PersistentMapping} class is a wrapper for mapping objects
 that will set the dirty bit when the mapping is modified by setting or
-deleting a key.  
+deleting a key.
 
 \begin{funcdesc}{PersistentMapping}{container = \{\}}
-Create a \class{PersistentMapping} object that wraps the 
+Create a \class{PersistentMapping} object that wraps the
 mapping object \var{container}.  If you don't specify a
 value for \var{container}, a regular Python dictionary is used.
 \end{funcdesc}
 
-\class{PersistentMapping} objects support all the same methods as 
+\class{PersistentMapping} objects support all the same methods as
 Python dictionaries do.
 
 \subsection{\module{ZODB.PersistentList}}
 
-The \class{PersistentList} class is a wrapper for mutable sequence objects, 
-much as \class{PersistentMapping} is a wrapper for mappings.  
+The \class{PersistentList} class is a wrapper for mutable sequence objects,
+much as \class{PersistentMapping} is a wrapper for mappings.
 
 \begin{funcdesc}{PersistentList}{initlist = []}
-Create a \class{PersistentList} object that wraps the 
+Create a \class{PersistentList} object that wraps the
 mutable sequence object \var{initlist}.  If you don't specify a
 value for \var{initlist}, a regular Python list is used.
 \end{funcdesc}
 
-\class{PersistentList} objects support all the same methods as 
+\class{PersistentList} objects support all the same methods as
 Python lists do.
 
 




More information about the Zodb-checkins mailing list