Skip to content

Commit 47d4a3c

Browse files
author
benjamin.peterson
committed
fix compile errors
git-svn-id: http://svn.python.org/projects/python/trunk@65738 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 969e4ef commit 47d4a3c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Include/symtable.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ typedef struct _symtable_entry {
3232
PyObject *ste_children; /* list of child ids */
3333
_Py_block_ty ste_type; /* module, class, or function */
3434
int ste_unoptimized; /* false if namespace is optimized */
35-
int ste_nested : ; /* true if block is nested */
35+
int ste_nested; /* true if block is nested */
3636
unsigned ste_free : 1; /* true if block has free variables */
3737
unsigned ste_child_free : 1; /* true if a child block has free vars,
3838
including free refs to globals */

0 commit comments

Comments
 (0)