Eli Brosh wrote:
> Thanks Fernando,
> I now tried %who.
> The result was a huge output, apparently containing all the pylab functions.
> This is exactly the thing I was trying to avoid.
> I wanted to use the who command to see only the variables I defined as 
> part of the pylab session.
> 
> Is there a way to do just this ?

Maybe the pylab command does what you want; you have to include the 
trailing parentheses:

[EMAIL PROTECTED]:~$ ipython -pylab
[...]

In [2]:x = arange(20)

In [3]:who()
Name            Shape            Bytes            Type
===========================================================

x               20               80               int32

Upper bound on total bytes  =       80


Eric

-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to