[Zope3-checkins] CVS: Zope3/src/zope/proxy/context/tests - test_containmentiterator.py:1.3 test_wrapper.py:1.8 test_wrapperinteraction.py:1.4

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


Update of /cvs-repository/Zope3/src/zope/proxy/context/tests
In directory cvs.zope.org:/tmp/cvs-serv30407/zope/proxy/context/tests

Modified Files:
	test_containmentiterator.py test_wrapper.py 
	test_wrapperinteraction.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/proxy/context/tests/test_containmentiterator.py 1.2 => 1.3 ===
--- Zope3/src/zope/proxy/context/tests/test_containmentiterator.py:1.2	Wed Dec 25 09:15:17 2002
+++ Zope3/src/zope/proxy/context/tests/test_containmentiterator.py	Thu May  1 15:35:45 2003
@@ -16,7 +16,7 @@
 $Id$
 """
 
-import unittest, sys
+import unittest
 
 from zope.proxy.context import Wrapper, getbaseobject
 from zope.proxy.context.containmentiterator import ContainmentIterator


=== Zope3/src/zope/proxy/context/tests/test_wrapper.py 1.7 => 1.8 ===
--- Zope3/src/zope/proxy/context/tests/test_wrapper.py:1.7	Thu Apr 10 04:57:21 2003
+++ Zope3/src/zope/proxy/context/tests/test_wrapper.py	Thu May  1 15:35:45 2003
@@ -16,7 +16,7 @@
 
 from zope.proxy.context import wrapper, getcontext, getobject
 from zope.proxy.context import ContextMethod, ContextProperty, ContextAware
-from zope.proxy.tests.test_proxy import Comparable, Thing, ProxyTestCase
+from zope.proxy.tests.test_proxy import Thing, ProxyTestCase
 
 
 _marker = object()


=== Zope3/src/zope/proxy/context/tests/test_wrapperinteraction.py 1.3 => 1.4 ===
--- Zope3/src/zope/proxy/context/tests/test_wrapperinteraction.py:1.3	Wed Apr  9 07:44:27 2003
+++ Zope3/src/zope/proxy/context/tests/test_wrapperinteraction.py	Thu May  1 15:35:45 2003
@@ -25,7 +25,7 @@
 import unittest
 
 from zope.proxy.context import Wrapper, ContextMethod, ContextProperty
-from zope.proxy.context import ContextSuper, ContextWrapper, ContextAware
+from zope.proxy.context import ContextSuper
 
 class NewStyleClass(object):