[Python-checkins] r65738 - python/trunk/Include/symtable.h

benjamin.peterson python-checkins at python.org
Sun Aug 17 03:27:30 CEST 2008


Author: benjamin.peterson
Date: Sun Aug 17 03:27:30 2008
New Revision: 65738

Log:
fix compile errors

Modified:
   python/trunk/Include/symtable.h

Modified: python/trunk/Include/symtable.h
==============================================================================
--- python/trunk/Include/symtable.h	(original)
+++ python/trunk/Include/symtable.h	Sun Aug 17 03:27:30 2008
@@ -32,7 +32,7 @@
 	PyObject *ste_children;  /* list of child ids */
 	_Py_block_ty ste_type;   /* module, class, or function */
 	int ste_unoptimized;     /* false if namespace is optimized */
-	int ste_nested : ;      /* true if block is nested */
+	int ste_nested;      /* true if block is nested */
 	unsigned ste_free : 1;        /* true if block has free variables */
 	unsigned ste_child_free : 1;  /* true if a child block has free vars,
 				         including free refs to globals */


More information about the Python-checkins mailing list