Guido's wish is my command ;-)

Document both new format codes.
This commit is contained in:
Thomas Heller 2003-04-25 20:13:53 +00:00
parent 1f7d7e87fd
commit 4792d74ccd
1 changed files with 5 additions and 3 deletions

View File

@ -144,9 +144,11 @@ Completed features for 2.3
- PEP 311 (Simplified GIL Acquisition for Extensions, by Mark
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
- 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.)