diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-24 07:38:37 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-24 07:38:37 (GMT) |
commit | c3e54b848000e8cd2fc28ea29f3f8a0163aa075f (patch) | |
tree | 8b7ffb499a5a06dfc0a066531252002f40eb5fef /Lib | |
parent | 16d651042510e2014dfd552d1c67edf61b1cb99b (diff) | |
download | cpython-c3e54b848000e8cd2fc28ea29f3f8a0163aa075f.zip cpython-c3e54b848000e8cd2fc28ea29f3f8a0163aa075f.tar.gz cpython-c3e54b848000e8cd2fc28ea29f3f8a0163aa075f.tar.bz2 |
Use *absolute* import now that it is required. (Should this go into 2.5? Hopefully not the bogus comment about using relative imports. That was just to see if anyone was paying attention.)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_dict.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_dict.py b/Lib/test/test_dict.py index f3f78e7..bbca798 100644 --- a/Lib/test/test_dict.py +++ b/Lib/test/test_dict.py @@ -445,7 +445,7 @@ class DictTest(unittest.TestCase): self.fail_("g[42] didn't raise KeyError") -import mapping_tests +from test import mapping_tests class GeneralMappingTests(mapping_tests.BasicTestMappingProtocol): type2test = dict |