diff options
author | Guido van Rossum <guido@python.org> | 2007-10-15 00:25:56 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-10-15 00:25:56 (GMT) |
commit | 3b7210d336c23737e02631e391d6adb114518274 (patch) | |
tree | f4fc68e167c23f50bae741a2f355803314129fba | |
parent | 7c4c6c5d8aa6eb7ed4e76017f9094783631e96dc (diff) | |
download | cpython-3b7210d336c23737e02631e391d6adb114518274.zip cpython-3b7210d336c23737e02631e391d6adb114518274.tar.gz cpython-3b7210d336c23737e02631e391d6adb114518274.tar.bz2 |
Make it possible to run this test stand-alone.
-rw-r--r-- | Lib/test/test_frozen.py | 3 |
1 files changed, 3 insertions, 0 deletions
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 @@ class FrozenTests(unittest.TestCase): def test_main(): run_unittest(FrozenTests) + +if __name__ == "__main__": + test_main() |