Update of /cvsroot/jython/jython/org/python/parser
In directory slayer.i.sourceforge.net:/tmp/cvs-serv4893
Modified Files:
python.jjt
Log Message:
Fix bug 125440 by making the "as" word a valid Name() node.
Index: python.jjt
===================================================================
RCS file: /cvsroot/jython/jython/org/python/parser/python.jjt,v
retrieving revision 2.11
retrieving revision 2.12
diff -C2 -r2.11 -r2.12
*** python.jjt 2000/12/12 21:09:34 2.11
--- python.jjt 2000/12/12 21:19:10 2.12
***************
*** 805,808 ****
--- 805,809 ----
{
t = <NAME> { jjtThis.setInfo(t.image); }
+ | t = <AS> { jjtThis.setInfo(t.image); }
}
|