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
There is a known bug that matplotlib leaks file handles on Windows. This has (to the best of my knowledge as a non-Windows user), been fixed for Python 2.x by #798. This is not currently in any released version of matplotlib, unfortunately, but it will make it into the next bugfix release.
import matplotlib.pylab as plt
for x in xrange(501):
fig = plt.figure()
print x
segfaults in the last iteration. Do you experience the same?
The text was updated successfully, but these errors were encountered: