Re: Can recursive descent parser handle Python grammar?

2006-10-02 Thread Ben Sizer
[EMAIL PROTECTED] wrote: > Ben Sizer wrote: > > [EMAIL PROTECTED] wrote: > > > I'm a compiler newbie and was curious if Python's language/grammar > > > can be handled by a recursive descent parser. > > > > I believe a recursive descent parser can handle any grammar; it just > > depends on how pure

Re: Can recursive descent parser handle Python grammar?

2006-09-29 Thread Antoon Pardon
On 2006-09-28, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I'm a compiler newbie and was curious if Python's language/grammar > can be handled by a recursive descent parser. IIUC the python grammer is LL(1) and the development team is commited to keeping it LL(1). LL(1) languages can be handle

Re: Can recursive descent parser handle Python grammar?

2006-09-29 Thread [EMAIL PROTECTED]
Ben Sizer wrote: > [EMAIL PROTECTED] wrote: > > I'm a compiler newbie and was curious if Python's language/grammar > > can be handled by a recursive descent parser. > > I believe a recursive descent parser can handle any grammar; it just > depends on how pure you want it to be. > > -- > Ben Size

Re: Can recursive descent parser handle Python grammar?

2006-09-29 Thread Ben Sizer
[EMAIL PROTECTED] wrote: > I'm a compiler newbie and was curious if Python's language/grammar > can be handled by a recursive descent parser. I believe a recursive descent parser can handle any grammar; it just depends on how pure you want it to be. -- Ben Sizer -- http://mail.python.org/mailm

Can recursive descent parser handle Python grammar?

2006-09-28 Thread [EMAIL PROTECTED]
I'm a compiler newbie and was curious if Python's language/grammar can be handled by a recursive descent parser. Well? Chris -- http://mail.python.org/mailman/listinfo/python-list