Andreas Schwab wrote: > diff --git a/src/if_python.c b/src/if_python.c > --- a/src/if_python.c > +++ b/src/if_python.c > @@ -359,7 +359,7 @@ > static PyObject *(*dll_PyRun_String)(char *, int, PyObject *, PyObject *); > static PyObject* (*dll_PyObject_GetAttrString)(PyObject *, const char *); > static int (*dll_PyObject_HasAttrString)(PyObject *, const char *); > -static PyObject* (*dll_PyObject_SetAttrString)(PyObject *, const char *, > PyObject *); > +static int (*dll_PyObject_SetAttrString)(PyObject *, const char *, PyObject > *); > static PyObject* (*dll_PyObject_CallFunctionObjArgs)(PyObject *, ...); > static PyObject* (*dll_PyObject_CallFunction)(PyObject *, char *, ...); > static PyObject* (*dll_PyObject_Call)(PyObject *, PyObject *, PyObject *); > diff --git a/src/if_python3.c b/src/if_python3.c > --- a/src/if_python3.c > +++ b/src/if_python3.c > @@ -302,7 +302,7 @@ > static PyObject* (*py3_PyRun_String)(char *, int, PyObject *, PyObject *); > static PyObject* (*py3_PyObject_GetAttrString)(PyObject *, const char *); > static int (*py3_PyObject_HasAttrString)(PyObject *, const char *); > -static PyObject* (*py3_PyObject_SetAttrString)(PyObject *, const char *, > PyObject *); > +static int (*py3_PyObject_SetAttrString)(PyObject *, const char *, PyObject > *); > static PyObject* (*py3_PyObject_CallFunctionObjArgs)(PyObject *, ...); > static PyObject* (*py3__PyObject_CallFunction_SizeT)(PyObject *, char *, > ...); > static PyObject* (*py3_PyObject_Call)(PyObject *, PyObject *, PyObject *);
Thanks, I'll add it in the todo list. -- Sorry, no fortune today. /// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\ /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ \\\ an exciting new programming language -- http://www.Zimbu.org /// \\\ help me help AIDS victims -- http://ICCF-Holland.org /// -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
