[Zodb-checkins] CVS: ZODB3/ZODB/zodb4 - z4iterator.py:1.1.2.2
Fred L. Drake, Jr.
fred at zope.com
Thu Jan 29 15:19:12 EST 2004
Update of /cvs-repository/ZODB3/ZODB/zodb4
In directory cvs.zope.org:/tmp/cvs-serv8126
Modified Files:
Tag: zope3-zodb3-devel-branch
z4iterator.py
Log Message:
ZODB3 changed to use "tid" instead of "serial", so make the iterator
results compatible
=== ZODB3/ZODB/zodb4/z4iterator.py 1.1.2.1 => 1.1.2.2 ===
--- ZODB3/ZODB/zodb4/z4iterator.py:1.1.2.1 Wed Jan 28 08:04:47 2004
+++ ZODB3/ZODB/zodb4/z4iterator.py Thu Jan 29 15:19:05 2004
@@ -193,6 +193,7 @@
def __init__(self, oid, serial, version, data, data_txn, refs):
self.oid = oid
self.serial = serial
+ self.tid = serial # XXX added for compatibility with ZODB 3
self.version = version
self.data = data
self.data_txn = data_txn
More information about the Zodb-checkins
mailing list