commit | 0c1ef470f80af09f402e7f6f1e464dfef7267542 | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Tue Mar 18 20:30:38 2008 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Tue Mar 18 20:30:38 2008 +0000 |
tree | 2974859809e1f161b7e6cdd1d68a8e2003279405 | |
parent | a7a3e28e4e6f7084e4d29e2c6d0ac95b8956648e [diff] [blame] |
Import the test properly. This is especially important for py3k.
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 @@ 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__':