[Zope3-checkins] CVS: Zope3/src/zope/app/cache - annotationcacheable.py:1.3
Steve Alexander
steve@cat-box.net
Fri, 6 Jun 2003 16:45:01 -0400
Update of /cvs-repository/Zope3/src/zope/app/cache
In directory cvs.zope.org:/tmp/cvs-serv19301/src/zope/app/cache
Modified Files:
annotationcacheable.py
Log Message:
yet another batch of updated interface declarations
=== Zope3/src/zope/app/cache/annotationcacheable.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/cache/annotationcacheable.py:1.2 Wed Dec 25 09:12:44 2002
+++ Zope3/src/zope/app/cache/annotationcacheable.py Fri Jun 6 16:44:30 2003
@@ -16,13 +16,14 @@
from zope.component import getAdapter, getService
from zope.app.interfaces.annotation import IAnnotations
from zope.app.interfaces.cache.cache import ICacheable
+from zope.interface import implements
annotation_key = 'zope.app.cache.CacheManager'
class AnnotationCacheable:
"""Stores cache information in object's annotations."""
- __implements__ = ICacheable
+ implements(ICacheable)
def __init__(self, context):
self._context = context