mirror of
https://github.com/python/cpython.git
synced 2025-09-19 07:00:59 +00:00
rename method arg because of typedef conflict
This commit is contained in:
parent
0865dd9ce9
commit
2ac3bc2c05
1 changed files with 4 additions and 4 deletions
|
@ -423,12 +423,12 @@ PyEval_CallFunction(obj, format, va_alist)
|
||||||
|
|
||||||
#ifdef HAVE_STDARG_PROTOTYPES
|
#ifdef HAVE_STDARG_PROTOTYPES
|
||||||
object *
|
object *
|
||||||
PyEval_CallMethod(object *obj, char *method, char *format, ...)
|
PyEval_CallMethod(object *obj, char *methonname, char *format, ...)
|
||||||
#else
|
#else
|
||||||
object *
|
object *
|
||||||
PyEval_CallMethod(obj, method, format, va_alist)
|
PyEval_CallMethod(obj, methonname, format, va_alist)
|
||||||
object *obj;
|
object *obj;
|
||||||
char *method;
|
char *methonname;
|
||||||
char *format;
|
char *format;
|
||||||
va_dcl
|
va_dcl
|
||||||
#endif
|
#endif
|
||||||
|
@ -438,7 +438,7 @@ PyEval_CallMethod(obj, method, format, va_alist)
|
||||||
object *args;
|
object *args;
|
||||||
object *res;
|
object *res;
|
||||||
|
|
||||||
meth = getattr(obj, method);
|
meth = getattr(obj, methonname);
|
||||||
if (meth == NULL)
|
if (meth == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue