[Python-checkins] python/nondist/peps pep-0283.txt,1.35,1.36
theller@users.sourceforge.net
theller@users.sourceforge.net
Fri, 25 Apr 2003 13:13:56 -0700
Update of /cvsroot/python/python/nondist/peps
In directory sc8-pr-cvs1:/tmp/cvs-serv25182
Modified Files:
pep-0283.txt
Log Message:
Guido's wish is my command ;-)
Document both new format codes.
Index: pep-0283.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0283.txt,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -d -r1.35 -r1.36
*** pep-0283.txt 25 Apr 2003 19:22:25 -0000 1.35
--- pep-0283.txt 25 Apr 2003 20:13:53 -0000 1.36
***************
*** 145,151 ****
Hammond) has been included in beta 1.
! - A new PyArg_Parse*() format code that returns an unsigned C long
! int that receives the lower LONG_BIT bits of the Python
! argument, truncating without range checking. (SF 595026; Thomas
Heller did this work.)
--- 145,153 ----
Hammond) has been included in beta 1.
! - Two new PyArg_Parse*() format codes, 'k' returns an unsigned C
! long int that receives the lower LONG_BIT bits of the Python
! argument, truncating without range checking. 'K' returns an
! unsigned C long long int that receives the lower LONG_LONG_BIT
! bits, truncating without range checking. (SF 595026; Thomas
Heller did this work.)