[Python-checkins] r46337 - python/branches/sreifschneider-newnewexcept/Lib/test/test_exceptions.py

richard.jones python-checkins at python.org
Fri May 26 16:37:14 CEST 2006


Author: richard.jones
Date: Fri May 26 16:37:13 2006
New Revision: 46337

Modified:
   python/branches/sreifschneider-newnewexcept/Lib/test/test_exceptions.py
Log:
fix

Modified: python/branches/sreifschneider-newnewexcept/Lib/test/test_exceptions.py
==============================================================================
--- python/branches/sreifschneider-newnewexcept/Lib/test/test_exceptions.py	(original)
+++ python/branches/sreifschneider-newnewexcept/Lib/test/test_exceptions.py	Fri May 26 16:37:13 2006
@@ -25,7 +25,7 @@
         raise exc("spam")
     except exc, err:
         buf = str(err)
-#    print buf
+    print buf
 
 def r(thing):
     test_raise_catch(thing)


More information about the Python-checkins mailing list