]> granicus.if.org Git - python/commitdiff
Use relative import now that it is required. (Should this go into 2.5?)
authorNeal Norwitz <nnorwitz@gmail.com>
Fri, 24 Mar 2006 06:59:24 +0000 (06:59 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Fri, 24 Mar 2006 06:59:24 +0000 (06:59 +0000)
Lib/test/test_sets.py

index ff834e0aa0d7ab64e98c1f7b883c2e30713a32b3..85e4a22e840a4b8577c06baebf698b0a856b99ee 100644 (file)
@@ -819,7 +819,8 @@ Set(['Jack', 'Jane', 'Janice', 'John', 'Marvin', 'Sam', 'Zack'])
 __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,