[Python-checkins] CVS: python/dist/src/Misc ACKS,1.112,1.113 NEWS,1.259,1.260
Tim Peters
tim_one@users.sourceforge.net
Sat, 29 Sep 2001 22:09:39 -0700
Update of /cvsroot/python/python/dist/src/Misc
In directory usw-pr-cvs1:/tmp/cvs-serv21648/python/Misc
Modified Files:
ACKS NEWS
Log Message:
SF [#466125] PyLong_AsLongLong works for any integer.
Generalize PyLong_AsLongLong to accept int arguments too. The real point
is so that PyArg_ParseTuple's 'L' code does too. That code was
undocumented (AFAICT), so documented it.
Index: ACKS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/ACKS,v
retrieving revision 1.112
retrieving revision 1.113
diff -C2 -d -r1.112 -r1.113
*** ACKS 2001/09/11 19:12:02 1.112
--- ACKS 2001/09/30 05:09:36 1.113
***************
*** 115,118 ****
--- 115,119 ----
David Ely
Jeff Epler
+ Tom Epperly
Stoffel Erasmus
Michael Ernst
Index: NEWS
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/NEWS,v
retrieving revision 1.259
retrieving revision 1.260
diff -C2 -d -r1.259 -r1.260
*** NEWS 2001/09/28 21:53:41 1.259
--- NEWS 2001/09/30 05:09:36 1.260
***************
*** 15,18 ****
--- 15,22 ----
C API
+ - PyLong_AsLongLong() now accepts int (as well as long) arguments.
+ Consequently, PyArg_ParseTuple's 'L' code also accepts int (as well
+ as long) arguments.
+
New platforms