[Python-checkins] python/dist/src/Python bltinmodule.c,2.301,2.302

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Thu Nov 6 09:06:50 EST 2003


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

Modified Files:
	bltinmodule.c 
Log Message:
Implement and apply PEP 322, reverse iteration

Index: bltinmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/bltinmodule.c,v
retrieving revision 2.301
retrieving revision 2.302
diff -C2 -d -r2.301 -r2.302
*** bltinmodule.c	25 Oct 2003 23:24:14 -0000	2.301
--- bltinmodule.c	6 Nov 2003 14:06:48 -0000	2.302
***************
*** 2122,2125 ****
--- 2122,2126 ----
  	SETBUILTIN("long",		&PyLong_Type);
  	SETBUILTIN("object",		&PyBaseObject_Type);
+ 	SETBUILTIN("reversed",		&PyReversed_Type);
  	SETBUILTIN("slice",		&PySlice_Type);
  	SETBUILTIN("staticmethod",	&PyStaticMethod_Type);





More information about the Python-checkins mailing list