[Zope3-checkins] CVS: Zope3/lib/python/Persistence - IPersistent.py:1.6
Steve Alexander
steve@cat-box.net
Fri, 8 Nov 2002 07:27:42 -0500
Update of /cvs-repository/Zope3/lib/python/Persistence
In directory cvs.zope.org:/tmp/cvs-serv9732
Modified Files:
IPersistent.py
Log Message:
corrected typos, normalised formatting.
=== Zope3/lib/python/Persistence/IPersistent.py 1.5 => 1.6 ===
--- Zope3/lib/python/Persistence/IPersistent.py:1.5 Thu Oct 3 15:44:23 2002
+++ Zope3/lib/python/Persistence/IPersistent.py Fri Nov 8 07:27:41 2002
@@ -169,7 +169,7 @@
""")
_p_atime=Attribute(
- """The integer object access time, in seconds, modulus one day.
+ """The integer object access time, in seconds, modulus one day
XXX When does a day start, the current implementation appears
to use gmtime, but this hasn't be explicitly specified.
@@ -178,7 +178,7 @@
""")
def __getstate__():
- """Get the object state data.
+ """Get the object state data
The state should not include peristent attributes ("_p_name")
"""
@@ -190,7 +190,7 @@
"""
def _p_activate():
- """Activate the object.
+ """Activate the object
Change the object to the up-to-date state if it is a ghost.
"""
@@ -203,9 +203,9 @@
"""
def _p_independent():
- """Hook for subclasses to prevent read conflict errors.
+ """Hook for subclasses to prevent read conflict errors
- A specific peristent object type can defined this method and
+ A specific persistent object type can define this method and
have it return true if the data manager should ignore read
conflicts for this object.
"""