[issue35132] python-gdb error: Python Exception <class 'RuntimeError'> Type does not have a target

STINNER Victor report at bugs.python.org
Thu Feb 14 06:42:40 EST 2019


STINNER Victor <vstinner at redhat.com> added the comment:

Python 3.6 no longer accept bugfixes, only security fixes:
http://devguide.python.org/#status-of-python-branches

You can try faulthandler has a workaround. For example, install faulthandler signal handler using faulthandler.register(signal.SIGUSR1) and then send a SIGUSR1 signal to the blocked process. You might want to write the output into a file if you don't have access the program stdout: use the 'file' parameter of faulthandler.register(). See also faulthandler.dump_traceback_later() to use a timeout.

https://docs.python.org/dev/library/faulthandler.html

----------

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue35132>
_______________________________________


More information about the Python-bugs-list mailing list