From 0c1ef470f80af09f402e7f6f1e464dfef7267542 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Tue, 18 Mar 2008 20:30:38 +0000 Subject: [PATCH] Import the test properly. This is especially important for py3k. --- Lib/test/test_extcall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_extcall.py b/Lib/test/test_extcall.py index b6dc144cfd..8088fe2e8e 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__': -- 2.40.0