[Zope3-checkins] CVS: Zope3/src/zodb/storage - bdbfull.py:1.23

Barry Warsaw barry@wooz.org
Thu, 10 Apr 2003 15:06:54 -0400


Update of /cvs-repository/Zope3/src/zodb/storage
In directory cvs.zope.org:/tmp/cvs-serv10336

Modified Files:
	bdbfull.py 
Log Message:
_mark(): Minor cleanup and comment update.


=== Zope3/src/zodb/storage/bdbfull.py 1.22 => 1.23 ===
--- Zope3/src/zodb/storage/bdbfull.py:1.22	Wed Apr  9 13:57:58 2003
+++ Zope3/src/zodb/storage/bdbfull.py	Thu Apr 10 15:06:53 2003
@@ -1590,15 +1590,14 @@
             if not self._packmark.has_key(oid):
                 # We haven't seen this object yet
                 self._packmark.put(oid, PRESENT, txn=txn)
-                # Get the pickle data for the most current revision of this
-                # object as of the pack time.
+                # Get the list of references for the most current revision of
+                # this object as of the pack time.
                 tid = self._findrev(oid, packtid, txn)
                 # Say there's no root object (as is the case in some of the
                 # unit tests), and we're looking up oid ZERO.  Then serial
                 # will be None.
                 if tid is not None:
                     lrevid = self._metadata[oid+tid][16:24]
-                    data = self._pickles[oid+lrevid]
                     # Now get the oids of all the objects referenced by this
                     # object revision
                     references = self._references.get(oid+lrevid)