[Zope3-checkins] CVS: Zope3/src/zope/app/schema/tests -
test_interfaceutility.py:1.5
Stephan Richter
srichter at cosmos.phy.tufts.edu
Sat Mar 13 17:02:41 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/schema/tests
In directory cvs.zope.org:/tmp/cvs-serv11189/src/zope/app/schema/tests
Modified Files:
test_interfaceutility.py
Log Message:
Move dependable interfaces to zope.app.dependable.interfaces after making
zope.app.dependable a package.
=== Zope3/src/zope/app/schema/tests/test_interfaceutility.py 1.4 => 1.5 ===
--- Zope3/src/zope/app/schema/tests/test_interfaceutility.py:1.4 Sat Mar 13 13:01:19 2004
+++ Zope3/src/zope/app/schema/tests/test_interfaceutility.py Sat Mar 13 17:02:08 2004
@@ -33,7 +33,7 @@
from zope.app.registration.interfaces import ActiveStatus
from zope.app.registration.interfaces import IRegistered
from zope.app.utility.interfaces import ILocalUtility
-from zope.app.interfaces.dependable import IDependable
+from zope.app.dependable.interfaces import IDependable
from zope.app.tests import setup
from zope.interface.interface import InterfaceClass
from zope.interface.interfaces import IInterface
@@ -68,16 +68,16 @@
return self._usages
def addDependent(self, location):
- "See zope.app.interfaces.dependable.IDependable"
+ "See zope.app.dependable.interfaces.IDependable"
if location not in self._dependents:
self._dependents.append(location)
def removeDependent(self, location):
- "See zope.app.interfaces.dependable.IDependable"
+ "See zope.app.dependable.interfaces.IDependable"
self._dependents.remove(location)
def dependents(self):
- "See zope.app.interfaces.dependable.IDependable"
+ "See zope.app.dependable.interfaces.IDependable"
return self._dependents
class Foo(InterfaceClass, Baz, Contained):
More information about the Zope3-Checkins
mailing list