[Zope3-checkins] CVS: Zope3/lib/python/ZEO - ICache.py:1.4
Jeremy Hylton
jeremy@zope.com
Mon, 2 Dec 2002 17:07:19 -0500
Update of /cvs-repository/Zope3/lib/python/ZEO
In directory cvs.zope.org:/tmp/cvs-serv12601/lib/python/ZEO
Modified Files:
ICache.py
Log Message:
Make this a real Interface, since Interface is part of ZODB4.
=== Zope3/lib/python/ZEO/ICache.py 1.3 => 1.4 ===
--- Zope3/lib/python/ZEO/ICache.py:1.3 Fri Nov 22 16:24:53 2002
+++ Zope3/lib/python/ZEO/ICache.py Mon Dec 2 17:07:19 2002
@@ -1,11 +1,6 @@
-try:
- from Interface import Base
-except ImportError:
- class Base:
- # a dummy interface for use when Zope's is unavailable
- pass
+from Interface import Interface
-class ICache(Base):
+class ICache(Interface):
"""ZEO client cache.
__init__(storage, size, client, var)