[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/locking/README.txt make this format reasonably in the online help

Fred L. Drake, Jr. fdrake at gmail.com
Fri Mar 18 15:44:41 EST 2005


Log message for revision 29568:
  make this format reasonably in the online help

Changed:
  U   Zope3/trunk/src/zope/app/locking/README.txt

-=-
Modified: Zope3/trunk/src/zope/app/locking/README.txt
===================================================================
--- Zope3/trunk/src/zope/app/locking/README.txt	2005-03-18 17:33:20 UTC (rev 29567)
+++ Zope3/trunk/src/zope/app/locking/README.txt	2005-03-18 20:44:41 UTC (rev 29568)
@@ -71,16 +71,16 @@
 
   >>> class Content(persistent.Persistent):
   ...     """A sample content object"""
-
+  ...
   ...     def __init__(self, value):
   ...         self.value = value
-
+  ...
   ...     def __call__(self):
   ...         return self
-
+  ...
   ...     def __hash__(self):
   ...         return self.value
-
+  ...
   ...     def __cmp__(self, other):
   ...         return cmp(self.value, other.value)
 



More information about the Zope3-Checkins mailing list