[Python-checkins] python/dist/src/Include Python-ast.h,1.1.2.1,1.1.2.2

jhylton@users.sourceforge.net jhylton@users.sourceforge.net
Tue, 09 Jul 2002 06:20:13 -0700


Update of /cvsroot/python/python/dist/src/Include
In directory usw-pr-cvs1:/tmp/cvs-serv9608/Include

Modified Files:
      Tag: ast-branch
	Python-ast.h 
Log Message:
make name assoc w/ expr* plural


Index: Python-ast.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/Attic/Python-ast.h,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -C2 -d -r1.1.2.1 -r1.1.2.2
*** Python-ast.h	7 Jul 2002 17:39:22 -0000	1.1.2.1
--- Python-ast.h	9 Jul 2002 13:20:11 -0000	1.1.2.2
***************
*** 105,109 ****
                  struct {
                          expr_ty dest;
!                         asdl_seq *value;
                          bool nl;
                  } Print;
--- 105,109 ----
                  struct {
                          expr_ty dest;
!                         asdl_seq *values;
                          bool nl;
                  } Print;
***************
*** 335,339 ****
  stmt_ty AugAssign(expr_ty target, operator_ty op, expr_ty value, int
                    lineno);
! stmt_ty Print(expr_ty dest, asdl_seq * value, bool nl, int lineno);
  stmt_ty For(expr_ty target, expr_ty iter, asdl_seq * body, asdl_seq *
              orelse, int lineno);
--- 335,339 ----
  stmt_ty AugAssign(expr_ty target, operator_ty op, expr_ty value, int
                    lineno);
! stmt_ty Print(expr_ty dest, asdl_seq * values, bool nl, int lineno);
  stmt_ty For(expr_ty target, expr_ty iter, asdl_seq * body, asdl_seq *
              orelse, int lineno);