[issue37933] faulthandler causes segfaults

2019-08-29 Thread STINNER Victor
STINNER Victor added the comment: Thanks Thomas. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue37933] faulthandler causes segfaults

2019-08-29 Thread STINNER Victor
STINNER Victor added the comment: New changeset e278335a6eb049e6028db9a8dcb8baac6cb365ee by Victor Stinner (Thomas A Caswell) in branch 'master': bpo-37933: Fix faulthandler.cancel_dump_traceback_later() (GH-15440)

[issue37933] faulthandler causes segfaults

2019-08-23 Thread Thomas Caswell
Change by Thomas Caswell : -- keywords: +patch pull_requests: +15133 stage: -> patch review pull_request: https://github.com/python/cpython/pull/15440 ___ Python tracker ___

[issue37933] faulthandler causes segfaults

2019-08-23 Thread Thomas Caswell
Change by Thomas Caswell : -- components: +Extension Modules -Library (Lib) ___ Python tracker ___ ___ Python-bugs-list mailing

[issue37933] faulthandler causes segfaults

2019-08-23 Thread Thomas Caswell
New submission from Thomas Caswell : Changing faulthandler to only allocate it's stack when use causes python to segfault with import faulthandler faulthandler.cancel_dump_traceback_later() https://bugs.python.org/issue37851 https://github.com/python/cpython/pull/15358 --