From: Jack Jansen Date: Thu, 17 Apr 2003 22:01:10 +0000 (+0000) Subject: dded missing k and K format specifiers to Py_BuildValue and friends. X-Git-Tag: v2.3c1~1144 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dbd6503e97264938c8fb4ce099c64da7a475e12e;p=thirdparty%2FPython%2Fcpython.git dded missing k and K format specifiers to Py_BuildValue and friends. --- diff --git a/Python/modsupport.c b/Python/modsupport.c index 9725a1bd0202..12f3f17b4870 100644 --- a/Python/modsupport.c +++ b/Python/modsupport.c @@ -289,9 +289,15 @@ do_mkvalue(char **p_format, va_list *p_va) case 'l': return PyInt_FromLong((long)va_arg(*p_va, long)); + case 'k': + return PyInt_FromLong((long)va_arg(*p_va, unsigned long)); + #ifdef HAVE_LONG_LONG case 'L': return PyLong_FromLongLong((PY_LONG_LONG)va_arg(*p_va, PY_LONG_LONG)); + + case 'K': + return PyLong_FromLongLong((PY_LONG_LONG)va_arg(*p_va, unsigned PY_LONG_LONG)); #endif #ifdef Py_USING_UNICODE case 'u':