Mercurial > public > mercurial-scm > hg-stable
view contrib/showstack.py @ 53015:e2c239dae5a2
setup: drop the inaccessible `py2exehacked` code around distutils
The comment heavily implies, and experimenting confirms, that there's no
`sys.real_prefix` in a venv on Python3. I have no idea how the problems
described would manifest, but nobody has complained for the several years of
py3 releases build from a venv. The experimenting was done with 6.9.2 and the
TortoiseHg build script.
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Sat, 22 Feb 2025 18:25:25 -0500 |
parents | 6000f5b25c9b |
children |
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) r"""dump stack trace when receiving SIGQUIT (Ctrl-\) or SIGINFO (Ctrl-T on BSDs) """ import signal import sys import traceback def sigshow(*args): sys.stderr.write("\n") traceback.print_stack(args[1], limit=10, file=sys.stderr) sys.stderr.write("----\n") def sigexit(*args): sigshow(*args) print('alarm!') sys.exit(1) def extsetup(ui): signal.signal(signal.SIGQUIT, sigshow) signal.signal(signal.SIGALRM, sigexit) try: signal.signal(signal.SIGINFO, sigshow) except AttributeError: pass