diff options
| author | Fred Drake <fdrake@acm.org> | 2001-09-24 20:19:08 (GMT) |
|---|---|---|
| committer | Fred Drake <fdrake@acm.org> | 2001-09-24 20:19:08 (GMT) |
| commit | e822049efcfb3eafede8035609284656671aece4 (patch) | |
| tree | 9919bc219f8717dbef70c4b4828735bb02ba72d8 | |
| parent | a3bae3369cca83ee485ed3293e2ad4c53691ba1a (diff) | |
| download | cpython-e822049efcfb3eafede8035609284656671aece4.zip cpython-e822049efcfb3eafede8035609284656671aece4.tar.gz cpython-e822049efcfb3eafede8035609284656671aece4.tar.bz2 | |
Adapt to use the test_main() approach.
| -rwxr-xr-x | Lib/test/test_htmlparser.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Lib/test/test_htmlparser.py b/Lib/test/test_htmlparser.py index 8661066..85e60e6 100755 --- a/Lib/test/test_htmlparser.py +++ b/Lib/test/test_htmlparser.py @@ -280,4 +280,9 @@ DOCTYPE html [ ]) -test_support.run_unittest(HTMLParserTestCase) +def test_main(): + test_support.run_unittest(HTMLParserTestCase) + + +if __name__ == "__main__": + test_main() |
