[Zodb-checkins] CVS: ZODB3/ZODB - fsrecover.py:1.9
Jeremy Hylton
jeremy at zope.com
Thu May 1 19:49:00 EDT 2003
Update of /cvs-repository/ZODB3/ZODB
In directory cvs.zope.org:/tmp/cvs-serv27305
Modified Files:
fsrecover.py
Log Message:
Fix a couple references to U64 (now u64).
=== ZODB3/ZODB/fsrecover.py 1.8 => 1.9 ===
--- ZODB3/ZODB/fsrecover.py:1.8 Thu May 1 18:29:37 2003
+++ ZODB3/ZODB/fsrecover.py Thu May 1 18:48:58 2003
@@ -104,7 +104,7 @@
tid, stl, status, ul, dl, el = unpack(">8s8scHHH",h)
if el < 0: el=t32-el
- tl=U64(stl)
+ tl=u64(stl)
if status=='c': raise EOFError
@@ -293,7 +293,7 @@
for r in transaction:
oid = r.oid
if verbose > 1:
- print U64(oid), r.version, len(r.data)
+ print u64(oid), r.version, len(r.data)
pre = preindex.get(oid)
s = ofs.store(oid, pre, r.data, r.version, transaction)
preindex[oid] = s
More information about the Zodb-checkins
mailing list