[Zope3-checkins] SVN: Zope3/trunk/src/zope/ Changed two text files to refer to the persistent module rather than the

Marius Gedminas marius at pov.lt
Fri May 28 13:27:44 EDT 2004


Log message for revision 25092:
Changed two text files to refer to the persistent module rather than the
deprecated persistence module.




-=-
Modified: Zope3/trunk/src/zope/app/form/browser/widgets.txt
===================================================================
--- Zope3/trunk/src/zope/app/form/browser/widgets.txt	2004-05-28 16:51:37 UTC (rev 25091)
+++ Zope3/trunk/src/zope/app/form/browser/widgets.txt	2004-05-28 17:27:43 UTC (rev 25092)
@@ -14,7 +14,7 @@
 Our Poll product holds an editable list of the PollOption instances. This
 is shown in the ``poll.py`` source below::
 
-    from persistence import Persistent
+    from persistent import Persistent
     from interfaces import IPoll, IPollOption
     from zope.interface import implements, classImplements
 

Modified: Zope3/trunk/src/zope/schema/README.txt
===================================================================
--- Zope3/trunk/src/zope/schema/README.txt	2004-05-28 16:51:37 UTC (rev 25091)
+++ Zope3/trunk/src/zope/schema/README.txt	2004-05-28 17:27:43 UTC (rev 25092)
@@ -92,7 +92,7 @@
 
 Now we want a class that adheres to the IContact Schema::
 
-    class Contact(persistence.Persistent):
+    class Contact(persistent.Persistent):
         implements(IContact)
 
         def __init__(self, first, last, email, address, pc):




More information about the Zope3-Checkins mailing list