diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2008-03-18 20:30:38 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2008-03-18 20:30:38 (GMT) |
commit | 0c1ef470f80af09f402e7f6f1e464dfef7267542 (patch) | |
tree | 2974859809e1f161b7e6cdd1d68a8e2003279405 | |
parent | a7a3e28e4e6f7084e4d29e2c6d0ac95b8956648e (diff) | |
download | cpython-0c1ef470f80af09f402e7f6f1e464dfef7267542.zip cpython-0c1ef470f80af09f402e7f6f1e464dfef7267542.tar.gz cpython-0c1ef470f80af09f402e7f6f1e464dfef7267542.tar.bz2 |
Import the test properly. This is especially important for py3k.
-rw-r--r-- | Lib/test/test_extcall.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_extcall.py b/Lib/test/test_extcall.py index b6dc144..8088fe2 100644 --- a/Lib/test/test_extcall.py +++ b/Lib/test/test_extcall.py @@ -255,7 +255,7 @@ TypeError if te dictionary is not empty from test import test_support def test_main(): - import test_extcall # self import + from test import test_extcall # self import test_support.run_doctest(test_extcall, True) if __name__ == '__main__': |