On 5/12/05, Ximo <[EMAIL PROTECTED]> wrote:
> I am doing my own interpreter with the Python languaje.
> 
> Do you understand me?

Well, to be frank, no. However, Frederik's point still stands; in the
python langage, "int a" is syntactically invalid. If you're writing
your own interpreter, it should still be syntactically invalid.

Could you perhaps repeat your question with an example of what
behavior is surprising you?

Peace
Bill Mill
bill.mill at gmail.com

> 
> "Fredrik Lundh" <[EMAIL PROTECTED]> escribió en el mensaje
> news:[EMAIL PROTECTED]
> > "Ximo" wrote:
> >
> >> I am doing a interpret of lines and it show me a prompt, and I want if I
> >> write a declaration as "int a" my progrtam return de prompt and nothing
> >> more, for exemple:
> >>
> >> >>> 2+2
> >> 4
> >> >>> int a
> >> >>>
> >>
> >> Then I'm finding that de function which execute "int a" return me
> >> nothing,
> >> and no
> >>
> >> >>> int a
> >> None
> >> >>>
> >
> > what Python version are you using?  here's what a normal Python
> > interpreter is supposed to do with your example:
> >
> >>>> 2+2
> > 4
> >>>> int a
> >  File "<stdin>", line 1
> >    int a
> >        ^
> > SyntaxError: invalid syntax
> >>>>
> >
> > </F>
> >
> >
> >
> 
> 
> --
> http://mail.python.org/mailman/listinfo/python-list
> 
>
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to