Hi all,
I am using matplotlib-0.87.7, Basemap-0.9.3, Numpy-1.1 and agg backend.
I am facing memory leak problems after running following script -
import os, sys, time
import cStringIO
import Image
import matplotlib
matplotlib.use('Agg')
import matplotlib.pylab as p
import matplotlib.numerix as
Aalok kapoor wrote:
> Hi all,
>
> I am using matplotlib-0.87.7, Basemap-0.9.3, Numpy-1.1 and agg backend.
> I am facing memory leak problems after running following script -
>
>
> import os, sys, time
> import cStringIO
> import Image
> import matplotlib
> matplotlib.use('Agg')
>
> import matplotli
All,
I just submitted an update to backend_qt.py and backend_qt4.py. Both updates
remove the 'mainloop' flag from the 'show' function as
it is now handled automatically.
Essentially the qt event-loop will only be started by matplotlib if matplotlib
was the one to create the qApp, if not then i
Thanks for reply,
This was just an example for mem leak in my application. Actually i want maps
with different data to be loaded each time and the map objects taken once
changees after ploting so i have to take different object each time. After
around 20 maps generation it gives memory error t