Use absolute imports

This commit is contained in:
Neal Norwitz 2006-04-03 04:45:34 +00:00
parent 480725d4c5
commit b902f4e401
7 changed files with 11 additions and 10 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,