[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/Traversing - Traverser.py:1.6

Steve Alexander steve@cat-box.net
Tue, 17 Dec 2002 09:17:38 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/Traversing
In directory cvs.zope.org:/tmp/cvs-serv28772

Modified Files:
	Traverser.py 
Log Message:
Removed extraneous imports.


=== Zope3/lib/python/Zope/App/Traversing/Traverser.py 1.5 => 1.6 ===
--- Zope3/lib/python/Zope/App/Traversing/Traverser.py:1.5	Mon Nov 11 09:32:16 2002
+++ Zope3/lib/python/Zope/App/Traversing/Traverser.py	Tue Dec 17 09:17:36 2002
@@ -17,14 +17,12 @@
 """
 
 from Zope.ComponentArchitecture import getAdapter
-from Zope.ContextWrapper.IWrapper import IWrapper
-from Zope.Proxy.ContextWrapper import getWrapperContainer, getInnerWrapperData
+from Zope.Proxy.ContextWrapper import getWrapperContainer
 from Zope.Proxy.ContextWrapper import ContextWrapper
 from Zope.ComponentArchitecture import queryAdapter
-from Zope.Exceptions import NotFoundError, Unauthorized
+from Zope.Exceptions import NotFoundError
 from Namespaces import namespaceLookup
 from ParameterParsing import parameterizedNameParse
-from Zope.Security.SecurityManagement import getSecurityManager
 
 from IPhysicallyLocatable import IPhysicallyLocatable
 from ITraverser import ITraverser