diff options
author | Benoit Foucher <benoit@zeroc.com> | 2015-04-28 22:32:02 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2015-04-28 22:32:02 +0200 |
commit | 8fe52c0cd380c685040d95be59abba478b8fe6a9 (patch) | |
tree | 18e0c1ded5f2c150607385f5ca1b0448debb4f60 /scripts/Expect.py | |
parent | ICE-5865 Added license info to pom files (diff) | |
download | ice-8fe52c0cd380c685040d95be59abba478b8fe6a9.tar.bz2 ice-8fe52c0cd380c685040d95be59abba478b8fe6a9.tar.xz ice-8fe52c0cd380c685040d95be59abba478b8fe6a9.zip |
Fixed ICE-6464 and deprecated various IceSSL properties
Diffstat (limited to 'scripts/Expect.py')
-rwxr-xr-x | scripts/Expect.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/Expect.py b/scripts/Expect.py index c367b5b63a9..2e0c87cf101 100755 --- a/scripts/Expect.py +++ b/scripts/Expect.py @@ -337,6 +337,9 @@ atexit.register(cleanup) def signal_handler(signal, frame): cleanup() sys.exit(0) + +if win32: + signal.signal(signal.SIGINT, signal_handler) signal.signal(signal.SIGTERM, signal_handler) class Expect (object): |