Mercurial > hg > mercurial-source
view contrib/showstack.py @ 29001:f3fb24e36d61
import-checker: report local with stdlib late warning
Without this, developers have to figure it out on their own
author | timeless <timeless@mozdev.org> |
---|---|
date | Wed, 02 Mar 2016 15:38:54 +0000 |
parents | bdac264e5ed4 |
children | f2fe7b199bb4 |
line wrap: on
line source
# showstack.py - extension to dump a Python stack trace on signal # # binds to both SIGQUIT (Ctrl-\) and SIGINFO (Ctrl-T on BSDs) import sys, signal, traceback def sigshow(*args): sys.stderr.write("\n") traceback.print_stack(args[1], limit=10, file=sys.stderr) sys.stderr.write("----\n") def extsetup(ui): signal.signal(signal.SIGQUIT, sigshow) try: signal.signal(signal.SIGINFO, sigshow) except AttributeError: pass