Mailing List Archive

CVS: python/dist/src/Include Python.h,2.43,2.44
Update of /cvsroot/python/python/dist/src/Include
In directory usw-pr-cvs1:/tmp/cvs-serv24834/Include

Modified Files:
Python.h
Log Message:
Add a comment that PyArg_GetInt is deprecated and should not be used

Index: Python.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/Python.h,v
retrieving revision 2.43
retrieving revision 2.44
diff -C2 -d -r2.43 -r2.44
*** Python.h 25 Mar 2002 20:46:45 -0000 2.43
--- Python.h 25 Mar 2002 22:21:58 -0000 2.44
***************
*** 118,121 ****
--- 118,122 ----
#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))