Summary
If you insert an exception here:
|
def __init__(self, canvas, num): |
the code has a segfault on quitting. This likely means that there's either a memory leak or double-free or some other memory issue someplace.
Proposed fix
Insert an exception here:
|
def __init__(self, canvas, num): |
Build against a debug version of python and track down the issue using a debugger.
Summary
If you insert an exception here:
matplotlib/lib/matplotlib/backends/backend_macosx.py
Line 68 in 25a54a4
Proposed fix
Insert an exception here:
matplotlib/lib/matplotlib/backends/backend_macosx.py
Line 68 in 25a54a4
Build against a debug version of python and track down the issue using a debugger.