[Python-checkins] CVS: python/dist/src/Include abstract.h,2.39,2.40
Fred L. Drake
fdrake@users.sourceforge.net
2001年10月27日 19:35:03 -0700
Update of /cvsroot/python/python/dist/src/Include
In directory usw-pr-cvs1:/tmp/cvs-serv9130/Include
Modified Files:
abstract.h
Log Message:
PyObject_CallFunctionObArgs() ---> PyObject_CallFunctionObjArgs()
PyObject_CallMethodObArgs() ---> PyObject_CallMethodObjArgs()
Index: abstract.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/Include/abstract.h,v
retrieving revision 2.39
retrieving revision 2.40
diff -C2 -d -r2.39 -r2.40
*** abstract.h 2001年10月26日 16:21:32 2.39
--- abstract.h 2001年10月28日 02:35:01 2.40
***************
*** 345,350 ****
! DL_IMPORT(PyObject *) PyObject_CallFunctionObArgs(PyObject *callable,
! ...);
/*
--- 345,350 ----
! DL_IMPORT(PyObject *) PyObject_CallFunctionObjArgs(PyObject *callable,
! ...);
/*
***************
*** 358,363 ****
! DL_IMPORT(PyObject *) PyObject_CallMethodObArgs(PyObject *o,
! PyObject *m, ...);
/*
--- 358,363 ----
! DL_IMPORT(PyObject *) PyObject_CallMethodObjArgs(PyObject *o,
! PyObject *m, ...);
/*