[Python-checkins] python/dist/src/Misc NEWS,1.703,1.704

loewis@users.sourceforge.net loewis@users.sourceforge.net
Sat, 29 Mar 2003 02:06:22 -0800


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

Modified Files:
	NEWS 
Log Message:
Rename LONG_LONG to PY_LONG_LONG. Fixes #710285.


Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.703
retrieving revision 1.704
diff -C2 -d -r1.703 -r1.704
*** NEWS	26 Mar 2003 16:03:16 -0000	1.703
--- NEWS	29 Mar 2003 10:06:18 -0000	1.704
***************
*** 102,105 ****
--- 102,107 ----
  -----
  
+ - LONG_LONG was renamed to PY_LONG_LONG.
+ 
  - Added PyObject_SelfIter() to fill the tp_iter slot for the
    typical case where the method returns its self argument.