[Python-checkins] CVS: python/dist/src Makefile.pre.in,1.25,1.26

Jeremy Hylton jhylton@users.sourceforge.net
Tue, 27 Feb 2001 11:07:04 -0800


Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv27842

Modified Files:
	Makefile.pre.in 
Log Message:
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



Index: Makefile.pre.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/Makefile.pre.in,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -r1.25 -r1.26
*** Makefile.pre.in	2001/02/27 18:50:56	1.25
--- Makefile.pre.in	2001/02/27 19:07:02	1.26
***************
*** 201,204 ****
--- 201,205 ----
  		Python/frozen.o \
  		Python/frozenmain.o \
+ 		Python/future.o \
  		Python/getargs.o \
  		Python/getcompiler.o \