[Zope-Checkins] CVS: Products/Transience -
TransientObject.py:1.9.68.4.2.1
Chris McDonough
chrism at plope.com
Mon Sep 13 04:17:56 EDT 2004
Update of /cvs-repository/Products/Transience
In directory cvs.zope.org:/tmp/cvs-serv3541
Modified Files:
Tag: chrism-pre273-branch
TransientObject.py
Log Message:
Don't resolve conflicts or act independent (at least until we understand the impact of doing so).
=== Products/Transience/TransientObject.py 1.9.68.4 => 1.9.68.4.2.1 ===
--- Products/Transience/TransientObject.py:1.9.68.4 Sun Sep 5 01:57:07 2004
+++ Products/Transience/TransientObject.py Mon Sep 13 04:17:55 2004
@@ -193,12 +193,12 @@
# Other non interface code
#
- def _p_independent(self):
+ def _not_p_independent(self):
# My state doesn't depend on or materially effect the state of
# other objects (eliminates read conflicts).
return 1
- def _p_resolveConflict(self, saved, state1, state2):
+ def _dont_p_resolveConflict(self, saved, state1, state2):
DEBUG and TLOG('entering TO _p_rc')
DEBUG and TLOG('states: sv: %s, s1: %s, s2: %s' % (
saved, state1, state2))
More information about the Zope-Checkins
mailing list