[issue26463] asyncio-related (?) segmentation fault

2016-03-01 Thread Nicholas Chammas
Nicholas Chammas added the comment: Thanks for the tip. Enabling the fault handler reveals that the crash is happening from the Cryptography library. I'll move this issue there. Thank you. -- resolution: -> not a bug status: open -> closed Added file:

[issue26463] asyncio-related (?) segmentation fault

2016-03-01 Thread STINNER Victor
STINNER Victor added the comment: Please try to get the Python stacktrace on the segfault using the faulthandler module: add faulthandler.enable() call at the beginning of your application. https://docs.python.org/dev/library/faulthandler.html I suspect a bug in your C code, not in asyncio.

[issue26463] asyncio-related (?) segmentation fault

2016-02-29 Thread Nicholas Chammas
Changes by Nicholas Chammas : Added file: http://bugs.python.org/file42052/stacktrace.txt ___ Python tracker ___

[issue26463] asyncio-related (?) segmentation fault

2016-02-29 Thread Nicholas Chammas
New submission from Nicholas Chammas: Python 3.5.1, OS X 10.11.3. I have an application that uses asyncio and Cryptography (via the AsyncSSH library). Cryptography has some parts written in C, I believe. I'm testing my application by sending a keyboard interrupt while 2 tasks are working. My