[Python-checkins] r65739 - python/trunk/Python/symtable.c
benjamin.peterson
python-checkins at python.org
Sun Aug 17 04:23:44 CEST 2008
Author: benjamin.peterson
Date: Sun Aug 17 04:23:43 2008
New Revision: 65739
Log:
uhh PySTEntry->ste_unoptimized has to be exposed too
Modified:
python/trunk/Python/symtable.c
Modified: python/trunk/Python/symtable.c
==============================================================================
--- python/trunk/Python/symtable.c (original)
+++ python/trunk/Python/symtable.c Sun Aug 17 04:23:43 2008
@@ -112,6 +112,7 @@
{"symbols", T_OBJECT, OFF(ste_symbols), READONLY},
{"varnames", T_OBJECT, OFF(ste_varnames), READONLY},
{"children", T_OBJECT, OFF(ste_children), READONLY},
+ {"optimized",T_INT, OFF(ste_unoptimized), READONLY},
{"nested", T_INT, OFF(ste_nested), READONLY},
{"type", T_INT, OFF(ste_type), READONLY},
{"lineno", T_INT, OFF(ste_lineno), READONLY},
More information about the Python-checkins
mailing list