Use relative import now that it is required. (Should this go into 2.5?)

This commit is contained in:
Neal Norwitz 2006-03-24 06:59:24 +00:00
parent abdbeff36e
commit ef4f7f0298
1 changed files with 2 additions and 1 deletions

View 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,