[Zope3-checkins] CVS: Zope3/src/zope/app - copypastemove.py:1.6 introspector.py:1.5
Martijn Faassen
m.faassen@vet.uu.nl
Thu, 1 May 2003 15:36:04 -0400
Update of /cvs-repository/Zope3/src/zope/app
In directory cvs.zope.org:/tmp/cvs-serv30407/zope/app
Modified Files:
copypastemove.py introspector.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/copypastemove.py 1.5 => 1.6 ===
--- Zope3/src/zope/app/copypastemove.py:1.5 Mon Mar 31 09:48:39 2003
+++ Zope3/src/zope/app/copypastemove.py Thu May 1 15:35:02 2003
@@ -27,13 +27,11 @@
from zope.app.interfaces.container import ICopyNotifiable
from zope.app.interfaces.container import IMoveSource
from zope.app.interfaces.container import ICopySource, INoChildrenCopySource, \
- CopyException, MoveException
+ CopyException
from zope.app.interfaces.container import IPasteTarget
-from zope.app.interfaces.traversing import IPhysicallyLocatable
from zope.app.event.objectevent import ObjectMovedEvent, ObjectCopiedEvent
from zope.app.event import publish
from zope.proxy.introspection import removeAllProxies
-from zope.app.attributeannotations import AttributeAnnotations
class ObjectMover:
'''Use getAdapter(obj, IObjectMover) to move an object somewhere.'''
=== Zope3/src/zope/app/introspector.py 1.4 => 1.5 ===
--- Zope3/src/zope/app/introspector.py:1.4 Mon Mar 24 11:33:14 2003
+++ Zope3/src/zope/app/introspector.py Thu May 1 15:35:02 2003
@@ -13,13 +13,11 @@
##############################################################################
from zope.interface import Interface
-from zope.interface.interfaces import IInterface
-from zope.interface.implements import implements, getImplements
from zope.app.interfaces.introspector import IIntrospector
from zope.app.interfaces.services.module import IModuleService
from zope.component import getServiceManager, getAdapter, \
- queryServiceManager, getServiceDefinitions
+ getServiceDefinitions
from zope.proxy.introspection import removeAllProxies