[Python-checkins] CVS: python/dist/src/Include compile.h,2.29.4.1,2.29.4.2 rangeobject.h,2.15.8.1,2.15.8.2

Tim Peters tim_one@users.sourceforge.net
Sat, 14 Jul 2001 00:47:36 -0700


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

Modified Files:
      Tag: descr-branch
	compile.h rangeobject.h 
Log Message:
Merge of trunk tag date2001-07-13 into descr-branch.  See PLAN.txt.


Index: compile.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/compile.h,v
retrieving revision 2.29.4.1
retrieving revision 2.29.4.2
diff -C2 -r2.29.4.1 -r2.29.4.2
*** compile.h	2001/07/07 22:55:27	2.29.4.1
--- compile.h	2001/07/14 07:47:34	2.29.4.2
***************
*** 63,67 ****
  					      PyCompilerFlags *);
  
! #define NESTED_SCOPES_DEFAULT 0
  #define FUTURE_NESTED_SCOPES "nested_scopes"
  
--- 63,67 ----
  					      PyCompilerFlags *);
  
! #define NESTED_SCOPES_DEFAULT 1
  #define FUTURE_NESTED_SCOPES "nested_scopes"
  

Index: rangeobject.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/rangeobject.h,v
retrieving revision 2.15.8.1
retrieving revision 2.15.8.2
diff -C2 -r2.15.8.1 -r2.15.8.2
*** rangeobject.h	2001/07/07 22:55:27	2.15.8.1
--- rangeobject.h	2001/07/14 07:47:34	2.15.8.2
***************
*** 20,24 ****
  #define PyRange_Check(op) ((op)->ob_type == &PyRange_Type)
  
! extern DL_IMPORT(PyObject *) PyRange_New(long, long, long);
  
  #ifdef __cplusplus
--- 20,24 ----
  #define PyRange_Check(op) ((op)->ob_type == &PyRange_Type)
  
! extern DL_IMPORT(PyObject *) PyRange_New(long, long, long, int);
  
  #ifdef __cplusplus