[Python-checkins] python/dist/src/Parser Python.asdl,1.1.2.3,1.1.2.4
jhylton@users.sourceforge.net
jhylton@users.sourceforge.net
2002年8月30日 15:09:41 -0700
Update of /cvsroot/python/python/dist/src/Parser
In directory usw-pr-cvs1:/tmp/cvs-serv17139
Modified Files:
Tag: ast-branch
Python.asdl
Log Message:
Interactive() must contain a stmt*
The following is a valid interactive input:
x = 1; y = 2
Index: Python.asdl
===================================================================
RCS file: /cvsroot/python/python/dist/src/Parser/Attic/Python.asdl,v
retrieving revision 1.1.2.3
retrieving revision 1.1.2.4
diff -C2 -d -r1.1.2.3 -r1.1.2.4
*** Python.asdl 4 Aug 2002 20:54:05 -0000 1.1.2.3
--- Python.asdl 30 Aug 2002 22:09:38 -0000 1.1.2.4
***************
*** 4,8 ****
{
mod = Module(stmt* body)
! | Interactive(stmt body)
| Expression(expr body)
--- 4,8 ----
{
mod = Module(stmt* body)
! | Interactive(stmt* body)
| Expression(expr body)