From ef4f7f0298f3a7eca6369b71e950957ad27ef3b5 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Fri, 24 Mar 2006 06:59:24 +0000 Subject: [PATCH] Use relative import now that it is required. (Should this go into 2.5?) --- Lib/test/test_sets.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Lib/test/test_sets.py b/Lib/test/test_sets.py index ff834e0aa0d..85e4a22e840 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,