[Python-checkins] python/dist/src/Modules main.c,1.64,1.64.2.1 symtablemodule.c,1.5.8.1,1.5.8.2

jhylton@users.sourceforge.net jhylton@users.sourceforge.net
Tue, 09 Jul 2002 06:22:02 -0700


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

Modified Files:
      Tag: ast-branch
	main.c symtablemodule.c 
Log Message:
Move PyCodeObject from compile.c to Objects/codeobject.c.



Index: main.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/main.c,v
retrieving revision 1.64
retrieving revision 1.64.2.1
diff -C2 -d -r1.64 -r1.64.2.1
*** main.c	3 Mar 2002 02:59:16 -0000	1.64
--- main.c	9 Jul 2002 13:22:00 -0000	1.64.2.1
***************
*** 3,7 ****
  #include "Python.h"
  #include "osdefs.h"
! #include "compile.h" /* For CO_FUTURE_DIVISION */
  
  #ifdef MS_WINDOWS
--- 3,7 ----
  #include "Python.h"
  #include "osdefs.h"
! #include "code.h" /* For CO_FUTURE_DIVISION */
  
  #ifdef MS_WINDOWS

Index: symtablemodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/symtablemodule.c,v
retrieving revision 1.5.8.1
retrieving revision 1.5.8.2
diff -C2 -d -r1.5.8.1 -r1.5.8.2
*** symtablemodule.c	7 Jul 2002 17:47:42 -0000	1.5.8.1
--- symtablemodule.c	9 Jul 2002 13:22:00 -0000	1.5.8.2
***************
*** 1,4 ****
--- 1,5 ----
  #include "Python.h"
  
+ #include "code.h"
  #include "compile.h"
  #include "Python-ast.h"