diff options
Diffstat (limited to 'Include/symtable.h')
-rw-r--r-- | Include/symtable.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Include/symtable.h b/Include/symtable.h index d2438921b0..628c3e6db2 100644 --- a/Include/symtable.h +++ b/Include/symtable.h @@ -46,7 +46,7 @@ typedef struct _symtable_entry { including free refs to globals */ 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 */ + int ste_tmpname; /* temporary name counter */ struct symtable *ste_table; } PySymtableEntryObject; @@ -93,6 +93,9 @@ PyAPI_FUNC(void) PySymtable_Free(struct symtable *); #define OPT_EXEC 2 #define OPT_BARE_EXEC 4 +#define GENERATOR 1 +#define GENERATOR_EXPRESSION 2 + #ifdef __cplusplus } #endif |