[Python-checkins] python/dist/src/Include compile.h,2.37.2.5,2.37.2.6

jhylton@users.sourceforge.net jhylton@users.sourceforge.net
Thu, 03 Apr 2003 05:50:40 -0800


Update of /cvsroot/python/python/dist/src/Include
In directory sc8-pr-cvs1:/tmp/cvs-serv5307

Modified Files:
      Tag: ast-branch
	compile.h 
Log Message:
Add i_lineno to struct instr.


Index: compile.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/compile.h,v
retrieving revision 2.37.2.5
retrieving revision 2.37.2.6
diff -C2 -d -r2.37.2.5 -r2.37.2.6
*** compile.h	24 Mar 2003 23:44:18 -0000	2.37.2.5
--- compile.h	3 Apr 2003 13:50:37 -0000	2.37.2.6
***************
*** 26,30 ****
  DL_IMPORT(PyFutureFeatures *) PyFuture_FromAST(struct _mod *, const char *);
  
! #define DEFAULT_BLOCK_SIZE 32
  #define DEFAULT_BLOCKS 8
  #define DEFAULT_CODE_SIZE 128
--- 26,30 ----
  DL_IMPORT(PyFutureFeatures *) PyFuture_FromAST(struct _mod *, const char *);
  
! #define DEFAULT_BLOCK_SIZE 16
  #define DEFAULT_BLOCKS 8
  #define DEFAULT_CODE_SIZE 128
***************
*** 36,39 ****
--- 36,40 ----
  	unsigned char i_opcode;
  	int i_oparg;
+ 	int i_lineno;
  };