diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-24 07:35:29 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-24 07:35:29 (GMT) |
commit | 16d651042510e2014dfd552d1c67edf61b1cb99b (patch) | |
tree | 9e9d4e5da491fc3f2dcb73e2d25d31d68cadbceb /Lib | |
parent | 2a0c7801a51932c172a83ad889157da50e7e892c (diff) | |
download | cpython-16d651042510e2014dfd552d1c67edf61b1cb99b.zip cpython-16d651042510e2014dfd552d1c67edf61b1cb99b.tar.gz cpython-16d651042510e2014dfd552d1c67edf61b1cb99b.tar.bz2 |
Use relative import now that it is required. (Should this go into 2.5?)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_import.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py index 72f27fa..a72b8bd 100644 --- a/Lib/test/test_import.py +++ b/Lib/test/test_import.py @@ -15,7 +15,7 @@ else: raise TestFailed("import of RAnDoM should have failed (case mismatch)") # Another brief digression to test the accuracy of manifest float constants. -import double_const # don't blink -- that *was* the test +from test import double_const # don't blink -- that *was* the test def remove_files(name): for f in (name + os.extsep + "py", |