Hello,
the following code seems to create a memory leak in Python.
(around 230 MB).
Any ideas what's wrong ?
I'm using python 2.5 and numpy 1.0.3
-------------------
def toto(x):
     return x**2

tutu=vectorize(toto)

Nbins=10000
for i in xrange(1000):
     c=tutu(arange(Nbins))
-------------------

Thanks,
Cyrille.
_______________________________________________
Numpy-discussion mailing list
[email protected]
http://projects.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to