[Python-checkins] r78970 - python/trunk/Lib/compileall.py

benjamin.peterson python-checkins at python.org
Mon Mar 15 03:58:24 CET 2010


Author: benjamin.peterson
Date: Mon Mar 15 03:58:24 2010
New Revision: 78970

Log:
this little exception dance is pointless

Modified:
   python/trunk/Lib/compileall.py

Modified: python/trunk/Lib/compileall.py
==============================================================================
--- python/trunk/Lib/compileall.py	(original)
+++ python/trunk/Lib/compileall.py	Mon Mar 15 03:58:24 2010
@@ -70,8 +70,6 @@
                     print 'Compiling', fullname, '...'
                 try:
                     ok = py_compile.compile(fullname, None, dfile, True)
-                except KeyboardInterrupt:
-                    raise KeyboardInterrupt
                 except py_compile.PyCompileError,err:
                     if quiet:
                         print 'Compiling', fullname, '...'


More information about the Python-checkins mailing list