[Zodb-checkins] CVS: ZODB3/ZEO - CommitLog.py:1.4
Guido van Rossum
guido@python.org
Thu, 29 Aug 2002 15:00:22 -0400
Update of /cvs-repository/ZODB3/ZEO
In directory cvs.zope.org:/tmp/cvs-serv30762
Modified Files:
CommitLog.py
Log Message:
The tpc_commit() method was unused. Get rid of it.
=== ZODB3/ZEO/CommitLog.py 1.3 => 1.4 ===
--- ZODB3/ZEO/CommitLog.py:1.3 Thu Aug 29 12:31:17 2002
+++ ZODB3/ZEO/CommitLog.py Thu Aug 29 15:00:21 2002
@@ -31,11 +31,6 @@
self.stores = 0
self.read = 0
- def tpc_begin(self, t, tid, status):
- self.t = t
- self.tid = tid
- self.status = status
-
def store(self, oid, serial, data, version):
self.pickler.dump((oid, serial, data, version))
self.stores += 1