[Zodb-checkins] CVS: ZODB3/ZODB/tests - VersionStorage.py:1.23.10.2
Tim Peters
tim.one at comcast.net
Mon Jul 7 18:45:33 EDT 2003
Update of /cvs-repository/ZODB3/ZODB/tests
In directory cvs.zope.org:/tmp/cvs-serv24995/ZODB/tests
Modified Files:
Tag: zodb33-devel-branch
VersionStorage.py
Log Message:
checkPackVersionReachable(): Don't call _cache.clear(), cuz it doesn't
exist.
=== ZODB3/ZODB/tests/VersionStorage.py 1.23.10.1 => 1.23.10.2 ===
--- ZODB3/ZODB/tests/VersionStorage.py:1.23.10.1 Tue Jul 1 16:57:20 2003
+++ ZODB3/ZODB/tests/VersionStorage.py Mon Jul 7 17:45:27 2003
@@ -491,7 +491,9 @@
self._storage.pack(time.time(), referencesf)
cn.sync()
- cn._cache.clear()
+
+ # XXX Is _cache supposed to have a clear() method, or not?
+ # cn._cache.clear()
# make sure all the non-version data is there
for name, obj in root.items():
More information about the Zodb-checkins
mailing list