[Python-checkins] python/dist/src/Include symtable.h,2.9,2.9.16.1
jhylton@users.sourceforge.net
jhylton@users.sourceforge.net
2003年5月22日 09:43:05 -0700
Update of /cvsroot/python/python/dist/src/Include
In directory sc8-pr-cvs1:/tmp/cvs-serv24293/Include
Modified Files:
Tag: release22-maint
symtable.h
Log Message:
Backport fix for SF bug 734869 and sundry compiler cleanups.
Index: symtable.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/symtable.h,v
retrieving revision 2.9
retrieving revision 2.9.16.1
diff -C2 -d -r2.9 -r2.9.16.1
*** symtable.h 11 Aug 2001 21:51:17 -0000 2.9
--- symtable.h 22 May 2003 16:43:03 -0000 2.9.16.1
***************
*** 29,33 ****
int st_errors; /* number of errors */
char *st_private; /* name of current class or NULL */
- int st_tmpname; /* temporary name counter */
PyFutureFeatures *st_future; /* module's future features */
};
--- 29,32 ----
***************
*** 48,51 ****
--- 47,51 ----
int ste_generator; /* true if namespace is a generator */
int ste_opt_lineno; /* lineno of last exec or import * */
+ int ste_tmpname; /* temporary name counter */
struct symtable *ste_table;
} PySymtableEntryObject;