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 eric.smith, kunduruanil, vstinner, xtreak
Date 2019-01-16.11:38:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1547638737.01.0.339158285934.issue35750@roundup.psfhosted.org>
In-reply-to
Content
You can enable faulthandler to get the Python traceback where the bug occurs. It might help a little bit. Either write the traceback into a file (file argument of faulthandler.enable()) or run your program in a terminal to see the traceback on the terminal.

http://docs.python.org/dev/library/faulthandler.html

I also suggest you to try to run your program using "python -X dev program.py" to enable more debug checks:
https://pythondev.readthedocs.io/debug_tools.html

PYTHONMALLOC=debug environment variable may help.
History
Date User Action Args
2019-01-16 11:38:58vstinnersetrecipients: + vstinner, eric.smith, xtreak, kunduruanil
2019-01-16 11:38:57vstinnersetmessageid: <1547638737.01.0.339158285934.issue35750@roundup.psfhosted.org>
2019-01-16 11:38:57vstinnerlinkissue35750 messages
2019-01-16 11:38:56vstinnercreate