[Checkins] SVN: zc.listcontainer/trunk/src/zc/listcontainer/ Get rid of unit test deprecations

Gary Poster gary at zope.com
Thu Apr 27 23:27:25 EDT 2006


Log message for revision 67686:
  Get rid of unit test deprecations
  

Changed:
  U   zc.listcontainer/trunk/src/zc/listcontainer/interfaces.py
  U   zc.listcontainer/trunk/src/zc/listcontainer/listcontainer.py

-=-
Modified: zc.listcontainer/trunk/src/zc/listcontainer/interfaces.py
===================================================================
--- zc.listcontainer/trunk/src/zc/listcontainer/interfaces.py	2006-04-28 03:26:21 UTC (rev 67685)
+++ zc.listcontainer/trunk/src/zc/listcontainer/interfaces.py	2006-04-28 03:27:24 UTC (rev 67686)
@@ -19,7 +19,7 @@
 """
 from zope import interface
 from zope.interface.common import sequence
-from zope.app.event.interfaces import IObjectEvent
+from zope.component.interfaces import IObjectEvent
 
 class IContainedObjectEvent(IObjectEvent):
     """An object's super or predecessor has changed (not successor).

Modified: zc.listcontainer/trunk/src/zc/listcontainer/listcontainer.py
===================================================================
--- zc.listcontainer/trunk/src/zc/listcontainer/listcontainer.py	2006-04-28 03:26:21 UTC (rev 67685)
+++ zc.listcontainer/trunk/src/zc/listcontainer/listcontainer.py	2006-04-28 03:27:24 UTC (rev 67686)
@@ -20,7 +20,7 @@
 from persistent.list import PersistentList
 from zope import interface
 from zope.event import notify
-from zope.app.event.objectevent import ObjectEvent
+from zope.component.interfaces import ObjectEvent
 
 import interfaces
 



More information about the Checkins mailing list