[Python-checkins] CVS: python/dist/src/Python bltinmodule.c,2.214,2.215

Guido van Rossum gvanrossum@users.sourceforge.net
Thu, 05 Jul 2001 07:44:43 -0700


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

Modified Files:
	bltinmodule.c 
Log Message:
Complete the xrange-simplification checkins: call PyRange_New() with
fewer arguments.


Index: bltinmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/bltinmodule.c,v
retrieving revision 2.214
retrieving revision 2.215
diff -C2 -r2.214 -r2.215
*** bltinmodule.c	2001/06/27 18:59:43	2.214
--- bltinmodule.c	2001/07/05 14:44:41	2.215
***************
*** 1764,1768 ****
  		return NULL;
  	}
! 	return PyRange_New(ilow, n, istep, 1);
  }
  
--- 1764,1768 ----
  		return NULL;
  	}
! 	return PyRange_New(ilow, n, istep);
  }