From: Neal Norwitz Date: Fri, 24 Mar 2006 06:59:24 +0000 (+0000) Subject: Use relative import now that it is required. (Should this go into 2.5?) X-Git-Tag: v3.0a1~1470 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ef4f7f0298f3a7eca6369b71e950957ad27ef3b5;p=python Use relative import now that it is required. (Should this go into 2.5?) --- diff --git a/Lib/test/test_sets.py b/Lib/test/test_sets.py index ff834e0aa0..85e4a22e84 100644 --- a/Lib/test/test_sets.py +++ b/Lib/test/test_sets.py @@ -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,