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 xdegaye
Recipients Alex.Willmer, terry.reedy, vstinner, xdegaye
Date 2016-05-07.07:09:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1462604996.81.0.406899110803.issue26934@psf.upfronthosting.co.za>
In-reply-to
Content
Reproducing the code that is executed on the first failure (test_disable) gives:

On linux:
$ python
Python 3.6.0a0 (default:47fa003aa9f1, Feb 24 2016, 13:09:02) 
[GCC 5.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import faulthandler
>>> faulthandler.enable()
>>> faulthandler.disable()
True
>>> faulthandler._sigsegv()
Segmentation fault (core dumped)


On the android emulator:
root@generic_x86:/data/local/tmp # python
Python 3.6.0a0 (default:811ccdee6f87+, May  7 2016, 09:02:21) 
[GCC 4.9 20140827 (prerelease)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import faulthandler
>>> faulthandler.enable()
>>> faulthandler.disable()
True
>>> faulthandler._sigsegv()
>>>
History
Date User Action Args
2016-05-07 07:09:56xdegayesetrecipients: + xdegaye, terry.reedy, vstinner, Alex.Willmer
2016-05-07 07:09:56xdegayesetmessageid: <1462604996.81.0.406899110803.issue26934@psf.upfronthosting.co.za>
2016-05-07 07:09:56xdegayelinkissue26934 messages
2016-05-07 07:09:55xdegayecreate