]> granicus.if.org Git - python/commitdiff
Add a comment that PyArg_GetInt is deprecated and should not be used
authorNeal Norwitz <nnorwitz@gmail.com>
Mon, 25 Mar 2002 22:21:58 +0000 (22:21 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Mon, 25 Mar 2002 22:21:58 +0000 (22:21 +0000)
Include/Python.h

index d3fce4b2caddcf5155b023d9d5f517fd265b3d3d..934997f11ad5826a1b1278bba825bb06e273e7bf 100644 (file)
 
 #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.