[Python-3000-checkins] r43272 - python/branches/p3yk/Lib/test/test_sets.py

neal.norwitz python-3000-checkins at python.org
Fri Mar 24 07:59:25 CET 2006


Author: neal.norwitz
Date: Fri Mar 24 07:59:24 2006
New Revision: 43272

Modified:
   python/branches/p3yk/Lib/test/test_sets.py
Log:
Use relative import now that it is required.  (Should this go into 2.5?)

Modified: python/branches/p3yk/Lib/test/test_sets.py
==============================================================================
--- python/branches/p3yk/Lib/test/test_sets.py	(original)
+++ python/branches/p3yk/Lib/test/test_sets.py	Fri Mar 24 07:59:24 2006
@@ -819,7 +819,8 @@
 __test__ = {'libreftest' : libreftest}
 
 def test_main(verbose=None):
-    import test_sets, doctest
+    import doctest
+    from test import test_sets
     test_support.run_unittest(
         TestSetOfSets,
         TestExceptionPropagation,


More information about the Python-3000-checkins mailing list