diff options
Diffstat (limited to 'Lib/idlelib/run.py')
-rw-r--r-- | Lib/idlelib/run.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/idlelib/run.py b/Lib/idlelib/run.py index e05be8f28e..ad23793c3d 100644 --- a/Lib/idlelib/run.py +++ b/Lib/idlelib/run.py @@ -62,6 +62,8 @@ def main(): method, args, kwargs = request ret = method(*args, **kwargs) rpc.response_queue.put((seq, ret)) + except KeyboardInterrupt: + continue except: print_exception() rpc.response_queue.put((seq, None)) |