commit | 3b7210d336c23737e02631e391d6adb114518274 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon Oct 15 00:25:56 2007 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon Oct 15 00:25:56 2007 +0000 |
tree | f4fc68e167c23f50bae741a2f355803314129fba | |
parent | 7c4c6c5d8aa6eb7ed4e76017f9094783631e96dc [diff] [blame] |
Make it possible to run this test stand-alone.
diff --git a/Lib/test/test_frozen.py b/Lib/test/test_frozen.py index e47bb64..3c9fab3 100644 --- a/Lib/test/test_frozen.py +++ b/Lib/test/test_frozen.py
@@ -38,3 +38,6 @@ def test_main(): run_unittest(FrozenTests) + +if __name__ == "__main__": + test_main()