mirror of https://github.com/pyodide/pyodide.git
Fix compile error from methnoargs-signatures branch (#1176)
This commit is contained in:
parent
c12e245191
commit
5631fcd1d6
|
@ -389,11 +389,6 @@ static PyNumberMethods JsProxy_NumberMethods = {
|
|||
};
|
||||
|
||||
static PyMethodDef JsProxy_Methods[] = {
|
||||
{ "__iter__",
|
||||
(PyCFunction)JsProxy_GetIter,
|
||||
METH_NOARGS,
|
||||
"Get an iterator over the object" },
|
||||
{ "__await__", (PyCFunction)JsProxy_Await, METH_NOARGS, ""},
|
||||
{ "__dir__",
|
||||
(PyCFunction)JsProxy_Dir,
|
||||
METH_NOARGS,
|
||||
|
|
Loading…
Reference in New Issue