[Zope-Checkins] CVS: ZODB3/BDBStorage - BDBMinimalStorage.py:1.26

Barry Warsaw barry@wooz.org
Tue, 21 Jan 2003 14:26:24 -0500


Update of /cvs-repository/ZODB3/BDBStorage
In directory cvs.zope.org:/tmp/cvs-serv19162

Modified Files:
	BDBMinimalStorage.py 
Log Message:
_mark(): Remove an assertion that is no longer correct.


=== ZODB3/BDBStorage/BDBMinimalStorage.py 1.25 => 1.26 ===
--- ZODB3/BDBStorage/BDBMinimalStorage.py:1.25	Tue Jan 21 14:18:47 2003
+++ ZODB3/BDBStorage/BDBMinimalStorage.py	Tue Jan 21 14:26:22 2003
@@ -420,7 +420,6 @@
         # we'll save the mark data in the packmark table.  The oidqueue is a
         # BerkeleyDB Queue that holds the list of object ids to look at next,
         # and by using this we don't need to keep an in-memory dictionary.
-        assert len(self._packmark) == 0
         assert len(self._oidqueue) == 0
         # Quick exit for empty storages
         if not self._serials: