diff options
author | Brett Cannon <brett@python.org> | 2013-07-04 22:04:20 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2013-07-04 22:04:20 (GMT) |
commit | 3dfd23245be19ff95cf50fe93c428dabf2ff90e7 (patch) | |
tree | dbebcd098995af1ec178500627c78a3217c51b0e /Lib | |
parent | fc4b5b9a429d69ea7073f99689f7d65afd849c6c (diff) | |
download | cpython-3dfd23245be19ff95cf50fe93c428dabf2ff90e7.zip cpython-3dfd23245be19ff95cf50fe93c428dabf2ff90e7.tar.gz cpython-3dfd23245be19ff95cf50fe93c428dabf2ff90e7.tar.bz2 |
Remove dead code in test_exceptions.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_exceptions.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py index 2f39d4b..f0851bd 100644 --- a/Lib/test/test_exceptions.py +++ b/Lib/test/test_exceptions.py @@ -953,8 +953,5 @@ class ImportErrorTests(unittest.TestCase): self.assertEqual(str(arg), str(exc)) -def test_main(): - run_unittest(ExceptionTests, ImportErrorTests) - if __name__ == '__main__': unittest.main() |