diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-24 06:59:24 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-24 06:59:24 (GMT) |
commit | ef4f7f0298f3a7eca6369b71e950957ad27ef3b5 (patch) | |
tree | 3a8a4ac8181292d3bc26bbd238a225be3babb811 | |
parent | abdbeff36eabfe2e8a1978f014a9d6e7c6f51260 (diff) | |
download | cpython-ef4f7f0298f3a7eca6369b71e950957ad27ef3b5.zip cpython-ef4f7f0298f3a7eca6369b71e950957ad27ef3b5.tar.gz cpython-ef4f7f0298f3a7eca6369b71e950957ad27ef3b5.tar.bz2 |
Use relative import now that it is required. (Should this go into 2.5?)
-rw-r--r-- | Lib/test/test_sets.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_sets.py b/Lib/test/test_sets.py index ff834e0..85e4a22 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, |