[Zodb-checkins] CVS: Zope3/lib/python/ZODB - Connection.py:1.60.6.12

Steve Alexander steve@cat-box.net
Tue, 19 Mar 2002 08:34:54 -0500


Update of /cvs-repository/Zope3/lib/python/ZODB
In directory cvs.zope.org:/tmp/cvs-serv15428

Modified Files:
      Tag: Zope-3x-branch
	Connection.py 
Log Message:
added _incrgc instance attribute to Connection, as is needed by DB.py



=== Zope3/lib/python/ZODB/Connection.py 1.60.6.11 => 1.60.6.12 ===
         self._version = version
         self._cache = cache = Cache(cache_size, cache_deactivate_after)
-        self.cacheGC = cache.incrgc
+        self._incrgc = self.cacheGC = cache.incrgc
 
         # _invalidated queues invalidate messages delivered from the DB
         self._invalidated = d = {}