]> granicus.if.org Git - python/commit
Improved __future__ parser; still more to do
authorJeremy Hylton <jeremy@alum.mit.edu>
Tue, 27 Feb 2001 19:07:02 +0000 (19:07 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Tue, 27 Feb 2001 19:07:02 +0000 (19:07 +0000)
commit4db62b1e14ed909d4bd574633a11c45455c76beb
tree3bf20f1bab90d74a8b189f5cb31da0d6fa320a2f
parented5e8234d76881fee036a3d2e642c6a7434c6eec
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
Include/compile.h
Include/symtable.h
Makefile.pre.in
Python/compile.c
Python/future.c [new file with mode: 0644]
Python/symtable.c