Make it possible to run this test stand-alone.
authorGuido van Rossum <guido@python.org>
Mon, 15 Oct 2007 00:25:56 +0000 (00:25 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 15 Oct 2007 00:25:56 +0000 (00:25 +0000)
Lib/test/test_frozen.py

index e47bb6496af6fd76fd154d1a055c62d51c9aa636..3c9fab3727626299d5b561e5340c466270f4c20d 100644 (file)
@@ -38,3 +38,6 @@ class FrozenTests(unittest.TestCase):
 
 def test_main():
     run_unittest(FrozenTests)
+
+if __name__ == "__main__":
+    test_main()