[Zope3-checkins] CVS: Zope3/src/zope/app - dependable.py:1.3
Jeremy Hylton
jeremy@zope.com
Mon, 30 Dec 2002 16:41:41 -0500
Update of /cvs-repository/Zope3/src/zope/app
In directory cvs.zope.org:/tmp/cvs-serv21558/zope/app
Modified Files:
dependable.py
Log Message:
Cleanup
=== Zope3/src/zope/app/dependable.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/dependable.py:1.2 Wed Dec 25 09:12:24 2002
+++ Zope3/src/zope/app/dependable.py Mon Dec 30 16:41:41 2002
@@ -18,8 +18,7 @@
__metaclass__ = type
from zope.app.interfaces.dependable import IDependable
-from zope.app.interfaces.annotation \
- import IAnnotations
+from zope.app.interfaces.annotation import IAnnotations
from zope.component import getAdapter
key = 'zope.app.dependable.Dependents'
@@ -31,7 +30,6 @@
def __init__(self, context):
self.context = context
-
def addDependent(self, location):
"See IDependable"