Fix compile error from methnoargs-signatures branch (#1176)

This commit is contained in:
Hood Chatham 2021-01-29 15:17:56 -08:00 committed by GitHub
parent c12e245191
commit 5631fcd1d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 5 deletions

View File

@ -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,