diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-03-15 02:58:24 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-03-15 02:58:24 (GMT) |
commit | ca02f3a4d650b7fc9a26b25bdd5cf159837a8a88 (patch) | |
tree | 5d4ee806ad666a7c1182381ffc907b64e746c91b | |
parent | d72ca858a6f5a08a16b3a6951380c7a90600aebf (diff) | |
download | cpython-ca02f3a4d650b7fc9a26b25bdd5cf159837a8a88.zip cpython-ca02f3a4d650b7fc9a26b25bdd5cf159837a8a88.tar.gz cpython-ca02f3a4d650b7fc9a26b25bdd5cf159837a8a88.tar.bz2 |
this little exception dance is pointless
-rw-r--r-- | Lib/compileall.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/compileall.py b/Lib/compileall.py index 49537fd..1a0b7cc 100644 --- a/Lib/compileall.py +++ b/Lib/compileall.py @@ -70,8 +70,6 @@ def compile_dir(dir, maxlevels=10, ddir=None, 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, '...' |