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

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


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

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


Index: Python-ast.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/Attic/Python-ast.c,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.c	7 Jul 2002 17:39:22 -0000	1.1.2.1
--- Python-ast.c	9 Jul 2002 13:20:11 -0000	1.1.2.2
***************
*** 223,227 ****
  
  stmt_ty
! Print(expr_ty dest, asdl_seq * value, bool nl, int lineno)
  {
          stmt_ty p;
--- 223,227 ----
  
  stmt_ty
! Print(expr_ty dest, asdl_seq * values, bool nl, int lineno)
  {
          stmt_ty p;
***************
*** 233,237 ****
          p->kind = Print_kind;
          p->v.Print.dest = dest;
!         p->v.Print.value = value;
          p->v.Print.nl = nl;
          p->lineno = lineno;
--- 233,237 ----
          p->kind = Print_kind;
          p->v.Print.dest = dest;
!         p->v.Print.values = values;
          p->v.Print.nl = nl;
          p->lineno = lineno;