From: Neal Norwitz Date: Mon, 25 Mar 2002 22:21:58 +0000 (+0000) Subject: Add a comment that PyArg_GetInt is deprecated and should not be used X-Git-Tag: v2.3c1~6331 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1543c07fdf1468dd4266934cc0f42d258e7c35ee;p=thirdparty%2FPython%2Fcpython.git Add a comment that PyArg_GetInt is deprecated and should not be used --- diff --git a/Include/Python.h b/Include/Python.h index d3fce4b2cadd..934997f11ad5 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -117,6 +117,7 @@ #include "abstract.h" +/* PyArg_GetInt is deprecated and should not be used, use PyArg_Parse(). */ #define PyArg_GetInt(v, a) PyArg_Parse((v), "i", (a)) /* PyArg_NoArgs should not be necessary.