From: Neal Norwitz Date: Tue, 18 Mar 2008 20:30:38 +0000 (+0000) Subject: Import the test properly. This is especially important for py3k. X-Git-Tag: v2.6a2~257 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0c1ef470f80af09f402e7f6f1e464dfef7267542;p=thirdparty%2FPython%2Fcpython.git 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 b6dc144cfdd0..8088fe2e8e4a 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__':