Message265044
| 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:56 | xdegaye | set | recipients:
+ xdegaye, terry.reedy, vstinner, Alex.Willmer |
| 2016年05月07日 07:09:56 | xdegaye | set | messageid: <1462604996.81.0.406899110803.issue26934@psf.upfronthosting.co.za> |
| 2016年05月07日 07:09:56 | xdegaye | link | issue26934 messages |
| 2016年05月07日 07:09:55 | xdegaye | create |
|