summaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-03-24 07:38:37 +0000
committerNeal Norwitz <nnorwitz@gmail.com>2006-03-24 07:38:37 +0000
commitc3e54b848000e8cd2fc28ea29f3f8a0163aa075f (patch)
tree8b7ffb499a5a06dfc0a066531252002f40eb5fef /Lib
parent16d651042510e2014dfd552d1c67edf61b1cb99b (diff)
downloadcpython-git-c3e54b848000e8cd2fc28ea29f3f8a0163aa075f.tar.gz
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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_dict.py b/Lib/test/test_dict.py
index f3f78e79dc..bbca79886c 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