This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Zach Riggle
Recipients Zach Riggle, gregory.p.smith, ned.deily, python-dev
Date 2017-01-23.16:52:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1485190340.8.0.741533834585.issue29335@psf.upfronthosting.co.za>
In-reply-to
Content
Of note, there's no need to actually cause a SIGSEGV to generate the signal.

The tests might be more clear to replace:

    libc.printf(ctypes.c_char_p(0xdeadbeef))

with

    os.kill(os.getpid(), signal.SIGSEGV)
History
Date User Action Args
2017-01-23 16:52:20Zach Rigglesetrecipients: + Zach Riggle, gregory.p.smith, ned.deily, python-dev
2017-01-23 16:52:20Zach Rigglesetmessageid: <1485190340.8.0.741533834585.issue29335@psf.upfronthosting.co.za>
2017-01-23 16:52:20Zach Rigglelinkissue29335 messages
2017-01-23 16:52:20Zach Rigglecreate