diff options
author | Jose <jose@zeroc.com> | 2015-02-05 12:02:30 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-02-05 12:02:30 +0100 |
commit | c419c9d4b3e0aab3c971f6e632eb8cd10f37e383 (patch) | |
tree | 788f4e0a09ede1c3b5a365ed051830506088cae9 /scripts/Expect.py | |
parent | JavaScript clean source map files (diff) | |
download | ice-c419c9d4b3e0aab3c971f6e632eb8cd10f37e383.tar.bz2 ice-c419c9d4b3e0aab3c971f6e632eb8cd10f37e383.tar.xz ice-c419c9d4b3e0aab3c971f6e632eb8cd10f37e383.zip |
Expect.py doesn't need to trap SIGINT
Diffstat (limited to 'scripts/Expect.py')
-rwxr-xr-x | scripts/Expect.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/Expect.py b/scripts/Expect.py index 985e5c80e5b..cc92aff163e 100755 --- a/scripts/Expect.py +++ b/scripts/Expect.py @@ -334,7 +334,6 @@ atexit.register(cleanup) def signal_handler(signal, frame): cleanup() sys.exit(0) -signal.signal(signal.SIGINT, signal_handler) signal.signal(signal.SIGTERM, signal_handler) class Expect (object): |