Re: an eval()-like exec()

2007-08-28 Thread Dustan
On Aug 27, 6:06 pm, "Matt McCredie" <[EMAIL PROTECTED]> wrote: > > A python interactive interpreter works by having the user type in some > > code, compiling and running that code, then printing the results. For > > printing, the results are turned into strings. > > > I would like make an interpret

Re: an eval()-like exec()

2007-08-27 Thread Gabriel Genellina
En Mon, 27 Aug 2007 15:59:25 -0300, Abel Daniel <[EMAIL PROTECTED]> escribi�: > Hi! > > A python interactive interpreter works by having the user type in some > code, compiling and running that code, then printing the results. For > printing, the results are turned into strings. This last stage

Re: an eval()-like exec()

2007-08-27 Thread Matt McCredie
> A python interactive interpreter works by having the user type in some > code, compiling and running that code, then printing the results. For > printing, the results are turned into strings. > > I would like make an interpreter which does this, without the last > part: i.e. where the results are

an eval()-like exec()

2007-08-27 Thread Abel Daniel
Hi! A python interactive interpreter works by having the user type in some code, compiling and running that code, then printing the results. For printing, the results are turned into strings. I would like make an interpreter which does this, without the last part: i.e. where the results are retur