Issue #5765: Merge from 3.3

This commit is contained in:
Nick Coghlan 2012-11-04 23:53:15 +10:00
commit e69bfc3fb6
7 changed files with 108 additions and 44 deletions

View file

@ -30,6 +30,8 @@ struct symtable {
PyObject *st_private; /* name of current class or NULL */
PyFutureFeatures *st_future; /* module's future features that affect
the symbol table */
int recursion_depth; /* current recursion depth */
int recursion_limit; /* recursion limit */
};
typedef struct _symtable_entry {