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

2007-05-20 Thread Gael Varoquaux
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 these guys. Gaël - Forwarded message from Georg Brandl <[EMAIL PROTECTED]

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

2007-05-20 Thread Robert Kern
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 > these guys. Not particularly. They are solvi

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

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] > > 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

[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

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 ze

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 l

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 b