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:
>
> > ...
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()
> >>
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