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 vstinner
Recipients BTaskaya, pablogsal, vstinner
Date 2020-04-02.13:13:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1585833234.54.0.913783829991.issue40140@roundup.psfhosted.org>
In-reply-to
Content
> "crashing" as in the test result but not segfaulting
> 0:00:01 load avg: 1.70 [1/1/1] test_builtin crashed (Exit code -1)

What is the signal 1 on Solaris? On Linux, it's SIGHUP, not SIGSEGV:

$ python3
Python 3.7.6 (default, Jan 30 2020, 09:44:41) 
>>> import signal
>>> signal.SIGSEGV
<Signals.SIGSEGV: 11>
>>> signal.SIGHUP
<Signals.SIGHUP: 1>
History
Date User Action Args
2020-04-02 13:13:54vstinnersetrecipients: + vstinner, pablogsal, BTaskaya
2020-04-02 13:13:54vstinnersetmessageid: <1585833234.54.0.913783829991.issue40140@roundup.psfhosted.org>
2020-04-02 13:13:54vstinnerlinkissue40140 messages
2020-04-02 13:13:54vstinnercreate