[Zope-CVS] CVS: Packages/SessionRig/Extensions -
SessionRigExtensions.py:1.3
Chris McDonough
chrism at plope.com
Mon Oct 4 15:44:24 EDT 2004
Update of /cvs-repository/Packages/SessionRig/Extensions
In directory cvs.zope.org:/tmp/cvs-serv14344/Extensions
Modified Files:
SessionRigExtensions.py
Log Message:
Compatibility with HEAD ZODB.
=== Packages/SessionRig/Extensions/SessionRigExtensions.py 1.2 => 1.3 ===
--- Packages/SessionRig/Extensions/SessionRigExtensions.py:1.2 Wed Sep 15 21:23:04 2004
+++ Packages/SessionRig/Extensions/SessionRigExtensions.py Mon Oct 4 15:44:23 2004
@@ -187,19 +187,19 @@
def commit(self, reallyme, t):
pass
- def tpc_begin(self, transaction):
+ def tpc_begin(self, transaction, *arg):
pass
- def tpc_abort(self, transaction):
+ def tpc_abort(self, transaction, *arg):
pass
def abort(self, reallyme, t):
pass
- def tpc_vote(self, transaction):
+ def tpc_vote(self, transaction, *arg):
self.voted = 1
- def tpc_finish(self, transaction):
+ def tpc_finish(self, transaction, *arg):
import Globals
if not self.voted:
More information about the Zope-CVS
mailing list