[Python-checkins] python/dist/src/Misc NEWS,1.697,1.698

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Mon, 17 Mar 2003 11:46:43 -0800


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

Modified Files:
	NEWS 
Log Message:
Renamed PyObject_GenericGetIter to PyObject_SelfIter
to more accurately describe what the function does.

Suggested by Thomas Wouters.



Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.697
retrieving revision 1.698
diff -C2 -d -r1.697 -r1.698
*** NEWS	17 Mar 2003 08:22:57 -0000	1.697
--- NEWS	17 Mar 2003 19:46:03 -0000	1.698
***************
*** 87,91 ****
  -----
  
! - Added PyObject_GenericGetIter() to fill the tp_iter slot for the
    typical case where the method returns its self argument.
  
--- 87,91 ----
  -----
  
! - Added PyObject_SelfIter() to fill the tp_iter slot for the
    typical case where the method returns its self argument.