Enable faulthandler

This commit is contained in:
Ivan Kozik 2015-07-18 21:32:27 +00:00
parent 227052371e
commit a66b970bfb

View File

@ -2,9 +2,14 @@
"""
Like wpull, except don't install a handler for SIGINT or SIGTERM,
because we install our own in wpull_hooks.py
because we install our own in wpull_hooks.py.
Also, enable faulthandler.
"""
import faulthandler
faulthandler.enable()
from wpull.app import Application
def noop_setup_signal_handlers(self):
pass