[Zodb-checkins] CVS: ZODB3/ZODB - cPickleCache.c:1.71
Barry Warsaw
barry@wooz.org
Tue, 11 Feb 2003 14:16:28 -0500
Update of /cvs-repository/ZODB3/ZODB
In directory cvs.zope.org:/tmp/cvs-serv16675
Modified Files:
cPickleCache.c
Log Message:
cc_invalidate(): Removed a bogus assert.
=== ZODB3/ZODB/cPickleCache.c 1.70 => 1.71 ===
--- ZODB3/ZODB/cPickleCache.c:1.70 Fri Dec 13 16:22:20 2002
+++ ZODB3/ZODB/cPickleCache.c Tue Feb 11 14:16:27 2003
@@ -338,11 +338,6 @@
PyObject *inv, *key, *v;
int i = 0;
- /* Older versions of ZODB used None to mean "invalidate everything,"
- but current Connection implementations don't ever pass None.
- */
- assert(key != Py_None);
-
if (PyArg_ParseTuple(args, "O!", &PyDict_Type, &inv)) {
while (PyDict_Next(inv, &i, &key, &v))
_invalidate(self, key);