Re: [Numpy-discussion] [Pointer] [Doc-SIG] The docs, reloaded (fwd)

2007-05-20 Thread Charles R Harris
On 5/20/07, Robert Kern [EMAIL PROTECTED] wrote: Gael Varoquaux wrote: Hi all, There is a very interesting discussion and python-dev and Doc-SIG about using reST to document python. I think that the ongoing effort to document numpy and friends with reST could benefit from interaction with

Re: [Numpy-discussion] [Pointer] [Doc-SIG] The docs, reloaded (fwd)

2007-05-20 Thread Steven H. Rogers
Charles R Harris wrote: On 5/20/07, *Robert Kern* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Gael Varoquaux wrote: Hi all, There is a very interesting discussion and python-dev and Doc-SIG about using reST to document python. I think that the ongoing

[Numpy-discussion] Memory leak when looking .flags

2007-05-20 Thread Cyrille Rosset
Hi, I'm not sure this is the right mailing list for this, but it seems there's a memory leak when looking at flags : from numpy import * x=ones(5000) #== python use 25% of memory (ok) del x #== memory usage fall back to almost zero (as seen in top) Thqt's good. but if I look at

Re: [Numpy-discussion] Memory leak when looking .flags

2007-05-20 Thread Robert Kern
Cyrille Rosset wrote: Hi, I'm not sure this is the right mailing list for this, but it seems there's a memory leak when looking at flags : from numpy import * x=ones(5000) #== python use 25% of memory (ok) del x #== memory usage fall back to almost zero (as seen in top)

Re: [Numpy-discussion] Memory leak when looking .flags

2007-05-20 Thread Cyrille Rosset
Ok, that works fine with python. But not in ipython... is there some other trick ? (there's a whole collection of _* variables in there...) Cyrille. Robert Kern a écrit : Cyrille Rosset wrote: Hi, I'm not sure this is the right mailing list for this, but it seems there's a memory leak when

Re: [Numpy-discussion] Memory leak when looking .flags

2007-05-20 Thread Robert Kern
Cyrille Rosset wrote: Ok, that works fine with python. But not in ipython... is there some other trick ? (there's a whole collection of _* variables in there...) And the Out[NN]'s, too. You should be able to del all of them: del Out[NN], _NN, _, __, ___ -- Robert Kern I have come to