Commit c4099e6b authored by Guido van Rossum's avatar Guido van Rossum

# Fix strange type (methonname instead of methodname).

parent b58dff55
......@@ -461,12 +461,12 @@ PyEval_CallFunction(obj, format, va_alist)
#ifdef HAVE_STDARG_PROTOTYPES
PyObject *
PyEval_CallMethod(PyObject *obj, char *methonname, char *format, ...)
PyEval_CallMethod(PyObject *obj, char *methodname, char *format, ...)
#else
PyObject *
PyEval_CallMethod(obj, methonname, format, va_alist)
PyEval_CallMethod(obj, methodname, format, va_alist)
PyObject *obj;
char *methonname;
char *methodname;
char *format;
va_dcl
#endif
......@@ -476,7 +476,7 @@ PyEval_CallMethod(obj, methonname, format, va_alist)
PyObject *args;
PyObject *res;
meth = PyObject_GetAttrString(obj, methonname);
meth = PyObject_GetAttrString(obj, methodname);
if (meth == NULL)
return NULL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment