diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-07-31 21:35:03 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2008-07-31 21:35:03 (GMT) |
commit | ad9604003ccfcf956375bbc2aeaac078b7bc9b23 (patch) | |
tree | 9721b8aea9ada1283f65df335422d5432eb545cb /Lib/test | |
parent | 39fd672dfe0bea76d0ae5823b864460757cb423b (diff) | |
download | cpython-ad9604003ccfcf956375bbc2aeaac078b7bc9b23.zip cpython-ad9604003ccfcf956375bbc2aeaac078b7bc9b23.tar.gz cpython-ad9604003ccfcf956375bbc2aeaac078b7bc9b23.tar.bz2 |
Remove a dummy test that was checked in by mistake
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_exceptions.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py index 5a0039e..c3a9308 100644 --- a/Lib/test/test_exceptions.py +++ b/Lib/test/test_exceptions.py @@ -13,14 +13,6 @@ from test.test_pep352 import ignore_message_warning class ExceptionTests(unittest.TestCase): - def test00(self): - try: - sys.exit(ValueError('aaa')) - except SystemExit: - pass - finally: - pass - def testReload(self): # Reloading the built-in exceptions module failed prior to Py2.2, while it # should act the same as reloading built-in sys. |