Browse Source

Allow for no original signal handler (#517). (#518)

pull/524/head
David Brooks 5 years ago
committed by GitHub
parent
commit
8107216848
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      socketio/client.py

6
socketio/client.py

@ -23,7 +23,11 @@ def signal_handler(sig, frame): # pragma: no cover
"""
for client in reconnecting_clients[:]:
client._reconnect_abort.set()
return original_signal_handler(sig, frame)
if callable(original_signal_handler):
return original_signal_handler(sig, frame)
else: # pragma: no cover
# Handle case where no original SIGINT handler was present.
return signal.default_int_handler(sig, frame)
original_signal_handler = None

Loading…
Cancel
Save