From: Benjamin Peterson Date: Sun, 21 Mar 2010 17:34:54 +0000 (+0000) Subject: rewrite a bit X-Git-Tag: v2.7b1~280 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e39b2ec6ca7a399e9e25ee5bf9f5eed1c809816a;p=python rewrite a bit --- diff --git a/Lib/test/test_extcall.py b/Lib/test/test_extcall.py index a10887e163..d9598e7e54 100644 --- a/Lib/test/test_extcall.py +++ b/Lib/test/test_extcall.py @@ -1,4 +1,7 @@ # -*- coding: utf-8 -*- + +import sys + """Doctest for method/function calls. We're going the use these types for extra testing @@ -275,7 +278,7 @@ import unittest from test import test_support -class UnicodeKeywordArgsTest(unittest.TestCase): +class ExtCallTest(unittest.TestCase): def test_unicode_keywords(self): def f(a): @@ -292,9 +295,8 @@ class UnicodeKeywordArgsTest(unittest.TestCase): def test_main(): - from test import test_extcall # self import - test_support.run_doctest(test_extcall, True) - test_support.run_unittest(UnicodeKeywordArgsTest) + test_support.run_doctest(sys.modules[__name__], True) + test_support.run_unittest(ExtCallTest) if __name__ == '__main__': test_main()