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

jhylton at users.sourceforge.net jhylton at users.sourceforge.net
Sat Feb 14 23:08:26 EST 2004


Update of /cvsroot/python/python/dist/src/Include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4963

Modified Files:
      Tag: ast-branch
	symtable.h 
Log Message:
ste_optimized is true for namespaces that *can* be optimized


Index: symtable.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/symtable.h,v
retrieving revision 2.9.18.9
retrieving revision 2.9.18.10
diff -C2 -d -r2.9.18.9 -r2.9.18.10
*** symtable.h	2 Dec 2003 06:58:37 -0000	2.9.18.9
--- symtable.h	15 Feb 2004 04:08:23 -0000	2.9.18.10
***************
*** 31,35 ****
  	PyObject *ste_children;  /* list of child ids */
  	block_ty ste_type;       /* module, class, or function */
! 	int ste_optimized : 1;   /* true if namespace can't be optimized */
  	int ste_nested : 1;      /* true if block is nested */
  	int ste_child_free : 1;  /* true if a child block has free variables,
--- 31,35 ----
  	PyObject *ste_children;  /* list of child ids */
  	block_ty ste_type;       /* module, class, or function */
! 	int ste_optimized : 1;   /* true if namespace can be optimized */
  	int ste_nested : 1;      /* true if block is nested */
  	int ste_child_free : 1;  /* true if a child block has free variables,




More information about the Python-checkins mailing list