From d3ab37f1df86b86d340360412331078a1da63d58 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 17 Apr 2003 14:55:42 +0000 Subject: 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. --- Parser/pgen.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Parser/pgen.c') diff --git a/Parser/pgen.c b/Parser/pgen.c index f3fdb46d1e..453deb43f8 100644 --- a/Parser/pgen.c +++ b/Parser/pgen.c @@ -669,6 +669,11 @@ pgen(node *n) return g; } +grammar * +Py_pgen(node *n) +{ + return pgen(n); +} /* -- cgit v1.2.1