[Zope3-checkins] CVS: Zope3/src/zope/app/workflow - instance.py:1.5 service.py:1.4

Jim Fulton jim@zope.com
Tue, 3 Jun 2003 18:46:53 -0400


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

Modified Files:
	instance.py service.py 
Log Message:
After cleaning up placefull test setup (see earlier checkins)
cleaned up unneeded imports in test modules (and some other modules)
based on the results of running Martijn Faassen's importchecker tool.


=== Zope3/src/zope/app/workflow/instance.py 1.4 => 1.5 ===
--- Zope3/src/zope/app/workflow/instance.py:1.4	Sun Jun  1 11:59:38 2003
+++ Zope3/src/zope/app/workflow/instance.py	Tue Jun  3 18:46:23 2003
@@ -18,7 +18,6 @@
 __metaclass__ = type
 
 from types import StringTypes
-from persistence import Persistent
 from persistence.dict import PersistentDict
 from zope.app.context import ContextWrapper
 from zope.proxy import removeAllProxies


=== Zope3/src/zope/app/workflow/service.py 1.3 => 1.4 ===
--- Zope3/src/zope/app/workflow/service.py:1.3	Sun Jun  1 11:59:38 2003
+++ Zope3/src/zope/app/workflow/service.py	Tue Jun  3 18:46:23 2003
@@ -32,7 +32,7 @@
 from zope.app.services.configuration import NamedComponentConfiguration
 from zope.app.services.configuration import ConfigurationStatusProperty
 from zope.app.interfaces.services.configuration import IUseConfiguration
-from zope.app.traversing import traverse, getPath
+from zope.app.traversing import getPath
 
 from zope.app.interfaces.services.service import ISimpleService
 from zope.app.interfaces.workflow import IProcessDefinitionConfiguration