From 4db62b1e14ed909d4bd574633a11c45455c76beb Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Tue, 27 Feb 2001 19:07:02 +0000 Subject: Improved __future__ parser; still more to do Makefile.pre.in: add target future.o Include/compile.h: define PyFutureFeaters and PyNode_Future() add c_future slot to struct compiling Include/symtable.h: add st_future slot to struct symtable Python/future.c: implementation of PyNode_Future() Python/compile.c: use PyNode_Future() for nested_scopes support Python/symtable.c: include compile.h to pick up PyFutureFeatures decl --- Python/symtable.c | 1 + 1 file changed, 1 insertion(+) (limited to 'Python/symtable.c') diff --git a/Python/symtable.c b/Python/symtable.c index 3ec129dfc2..aed8908bb2 100644 --- a/Python/symtable.c +++ b/Python/symtable.c @@ -1,4 +1,5 @@ #include "Python.h" +#include "compile.h" #include "symtable.h" #include "graminit.h" #include "structmember.h" -- cgit v1.2.1