[Zope3-checkins] CVS: Zope3/src/zope/app/startup - simpleregistry.py:1.6 sitedefinition.py:1.15

Martijn Faassen m.faassen@vet.uu.nl
Thu, 1 May 2003 15:36:07 -0400


Update of /cvs-repository/Zope3/src/zope/app/startup
In directory cvs.zope.org:/tmp/cvs-serv30407/zope/app/startup

Modified Files:
	simpleregistry.py sitedefinition.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/startup/simpleregistry.py 1.5 => 1.6 ===
--- Zope3/src/zope/app/startup/simpleregistry.py:1.5	Thu Mar 13 13:49:10 2003
+++ Zope3/src/zope/app/startup/simpleregistry.py	Thu May  1 15:35:36 2003
@@ -14,9 +14,8 @@
 """
 $Id$
 """
-from zope.configuration.name import resolve
 from zope.app.interfaces.startup.simpleregistry import ISimpleRegistry
-from types import StringTypes, ListType, TupleType
+from types import ListType, TupleType
 ListTypes = (TupleType, ListType)
 
 


=== Zope3/src/zope/app/startup/sitedefinition.py 1.14 => 1.15 ===
--- Zope3/src/zope/app/startup/sitedefinition.py:1.14	Fri Apr 18 18:12:29 2003
+++ Zope3/src/zope/app/startup/sitedefinition.py	Thu May  1 15:35:36 2003
@@ -34,9 +34,7 @@
 from zope.app.startup.servertyperegistry import getServerType
 
 # Import Undo-related classes
-from zope.app.content.folder import RootFolder
 from zope.app.interfaces.undo import IUndoManager
-from zope.app.publication.zopepublication import ZopePublication
 from zope.app.browser.undo import ZODBUndoManager
 from zope.component import getService
 from zope.app.services.servicenames import Utilities