summaryrefslogtreecommitdiff
path: root/scripts/Expect.py
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2015-02-05 12:02:30 +0100
committerJose <jose@zeroc.com>2015-02-05 12:02:30 +0100
commitc419c9d4b3e0aab3c971f6e632eb8cd10f37e383 (patch)
tree788f4e0a09ede1c3b5a365ed051830506088cae9 /scripts/Expect.py
parentJavaScript clean source map files (diff)
downloadice-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-xscripts/Expect.py1
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):