Re: inspected console

2007-05-07 Thread castironpi
On May 7, 7:59 pm, [EMAIL PROTECTED] wrote: > On May 7, 6:52 pm, [EMAIL PROTECTED] wrote: > > > > > Presents a console permitting inspection. Input as well as output > > saved in Python-readable form. > > Python 2.5.1 memoryconsole4.py logging to My Documents\console.log>>> class > > A: > > > ...

Re: inspected console

2007-05-07 Thread castironpi
On May 7, 6:52 pm, [EMAIL PROTECTED] wrote: > Presents a console permitting inspection. Input as well as output > saved in Python-readable form. > Python 2.5.1 memoryconsole4.py logging to My Documents\console.log>>> class A: > > ... def f( self ): > ... print 2 > ...>>> a=A() > >>

inspected console

2007-05-07 Thread castironpi
Presents a console permitting inspection. Input as well as output saved in Python-readable form. Python 2.5.1 memoryconsole4.py logging to My Documents\console.log >>> class A: ... def f( self ): ... print 2 ... >>> a=A() >>> import inspect >>> inspect.getsource( a.f ) '\tdef f( se