[Python-checkins] python/dist/src/Include symtable.h, 2.9.18.8, 2.9.18.9

jhylton at users.sourceforge.net jhylton at users.sourceforge.net
Tue Dec 2 01:58:39 EST 2003


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

Modified Files:
      Tag: ast-branch
	symtable.h 
Log Message:
Add flags for CO_VARARGS and CO_VARKEYWORDS.


Index: symtable.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/symtable.h,v
retrieving revision 2.9.18.8
retrieving revision 2.9.18.9
diff -C2 -d -r2.9.18.8 -r2.9.18.9
*** symtable.h	28 Apr 2003 17:32:47 -0000	2.9.18.8
--- symtable.h	2 Dec 2003 06:58:37 -0000	2.9.18.9
***************
*** 36,39 ****
--- 36,41 ----
  				    including free refs to globals */
  	int ste_generator : 1;   /* true if namespace is a generator */
+ 	int ste_varargs : 1;     /* true if block has varargs */
+ 	int ste_varkeywords : 1; /* true if block has varkeywords */
  	int ste_lineno;          /* first line of block */
  	int ste_opt_lineno;      /* lineno of last exec or import * */





More information about the Python-checkins mailing list