[Python-checkins] r65340 - python/trunk/Lib/test/test_exceptions.py

amaury.forgeotdarc python-checkins at python.org
Thu Jul 31 23:35:04 CEST 2008


Author: amaury.forgeotdarc
Date: Thu Jul 31 23:35:03 2008
New Revision: 65340

Log:
Remove a dummy test that was checked in by mistake


Modified:
   python/trunk/Lib/test/test_exceptions.py

Modified: python/trunk/Lib/test/test_exceptions.py
==============================================================================
--- python/trunk/Lib/test/test_exceptions.py	(original)
+++ python/trunk/Lib/test/test_exceptions.py	Thu Jul 31 23:35:03 2008
@@ -13,14 +13,6 @@
 
 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.


More information about the Python-checkins mailing list