[Zope3-checkins] CVS: Zope3/src/zope/app/cache - ram.py:1.5
Martijn Faassen
m.faassen@vet.uu.nl
Thu, 1 May 2003 15:36:06 -0400
Update of /cvs-repository/Zope3/src/zope/app/cache
In directory cvs.zope.org:/tmp/cvs-serv30407/zope/app/cache
Modified Files:
ram.py
Log Message:
Importgeddon part the second. Removed unused imports throughout the
source tree. This should have taken care of most unused imports
in Zope 3. :)
=== Zope3/src/zope/app/cache/ram.py 1.4 => 1.5 ===
--- Zope3/src/zope/app/cache/ram.py:1.4 Thu Apr 24 17:01:25 2003
+++ Zope3/src/zope/app/cache/ram.py Thu May 1 15:35:06 2003
@@ -22,14 +22,10 @@
from persistence import Persistent
-from zope.component import getAdapter
-from zope.component.exceptions import ComponentLookupError
-
from zope.app.interfaces.cache.ram import IRAMCache
from zope.app.interfaces.event import IObjectModifiedEvent
-from zope.app.interfaces.services.configuration \
- import IAttributeUseConfigurable
-from zope.app.interfaces.traversing import IPhysicallyLocatable
+from zope.app.interfaces.services.configuration import \
+ IAttributeUseConfigurable
# A global caches dictionary shared between threads
caches = {}