From: Guido van Rossum Date: Mon, 15 Oct 2007 00:25:56 +0000 (+0000) Subject: Make it possible to run this test stand-alone. X-Git-Tag: v3.0a2~318 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3b7210d336c23737e02631e391d6adb114518274;p=thirdparty%2FPython%2Fcpython.git Make it possible to run this test stand-alone. --- diff --git a/Lib/test/test_frozen.py b/Lib/test/test_frozen.py index e47bb6496af6..3c9fab372762 100644 --- a/Lib/test/test_frozen.py +++ b/Lib/test/test_frozen.py @@ -38,3 +38,6 @@ class FrozenTests(unittest.TestCase): def test_main(): run_unittest(FrozenTests) + +if __name__ == "__main__": + test_main()