#18196: merge with 3.3

This commit is contained in:
Roger Serwy 2013-06-11 22:25:34 -05:00
commit 6d844c5db9
2 changed files with 6 additions and 0 deletions

View file

@ -339,6 +339,10 @@ class Executive(object):
exec(code, self.locals)
finally:
interruptable = False
except SystemExit:
# Scripts that raise SystemExit should just
# return to the interactive prompt
pass
except:
self.usr_exc_info = sys.exc_info()
if quitting: