You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Segmentation faults sometimes happen in development, especially when setting up new environments and new machines. Adding support for faulthandler will help to diagnose causes of segfaults:
import faulthandler
faulthandler.enable()
To the best of our knowledge, segfaults have never been seen in frozen builds but it would be prudent to use faulthandler (or similar) to provide crash report.
The text was updated successfully, but these errors were encountered:
Segmentation faults sometimes happen in development, especially when setting up new environments and new machines. Adding support for faulthandler will help to diagnose causes of segfaults:
To the best of our knowledge, segfaults have never been seen in frozen builds but it would be prudent to use
faulthandler
(or similar) to provide crash report.The text was updated successfully, but these errors were encountered: