[Python-checkins] python/dist/src/Doc/api utilities.tex,1.21,1.22

birkenfeld@users.sourceforge.net birkenfeld at users.sourceforge.net
Sun Jul 17 22:05:29 CEST 2005


Update of /cvsroot/python/python/dist/src/Doc/api
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12022/Doc/api

Modified Files:
	utilities.tex 
Log Message:
bug [ 1061920 ] "k" specifier in PyArg_ParseTuple incomplete documentated



Index: utilities.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/utilities.tex,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- utilities.tex	13 Feb 2005 22:50:02 -0000	1.21
+++ utilities.tex	17 Jul 2005 20:05:25 -0000	1.22
@@ -539,7 +539,7 @@
   Convert a Python integer to a C \ctype{long int}.
 
   \item[\samp{k} (integer) {[unsigned long]}]
-  Convert a Python integer to a C \ctype{unsigned long} without
+  Convert a Python integer or long integer to a C \ctype{unsigned long} without
   overflow checking.  \versionadded{2.3}
 
   \item[\samp{L} (integer) {[PY_LONG_LONG]}]
@@ -548,7 +548,7 @@
   \ctype{_int64} on Windows).
 
   \item[\samp{K} (integer) {[unsigned PY_LONG_LONG]}]
-  Convert a Python integer to a C \ctype{unsigned long long}
+  Convert a Python integer or long integer to a C \ctype{unsigned long long}
   without overflow checking.  This format is only available on
   platforms that support \ctype{unsigned long long} (or
   \ctype{unsigned _int64} on Windows).  \versionadded{2.3}



More information about the Python-checkins mailing list