Can recursive descent parser handle Python grammar?

Antoon Pardon apardon at forel.vub.ac.be
Fri Sep 29 15:04:07 EDT 2006


On 2006-09-28, seberino at spawar.navy.mil <seberino at spawar.navy.mil> 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 handled by a recursive descent parser.

-- 
Antoon Pardon



More information about the Python-list mailing list