Changes from Jonathan Riehl to allow his pgen extension (PEP 269) to

work.  This includes some more code that used to be part of pgen in
the main parser; I'm okay with that.  I'll see if the Windows build
needs work next.
This commit is contained in:
Guido van Rossum 2003-04-17 14:55:42 +00:00
parent 6e5be22d97
commit d3ab37f1df
6 changed files with 60 additions and 9 deletions

View file

@ -669,6 +669,11 @@ pgen(node *n)
return g;
}
grammar *
Py_pgen(node *n)
{
return pgen(n);
}
/*