From c18581be36b2dda6441e578f84803addf118d410 Mon Sep 17 00:00:00 2001 From: Graham Dumpleton Date: Wed, 14 Aug 2013 22:11:58 +0800 Subject: [PATCH] Method list of ObjectWrapper not correct terminated in C implementation. --- src/_wrappers.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/_wrappers.c b/src/_wrappers.c index 4511c08..d64c047 100644 --- a/src/_wrappers.c +++ b/src/_wrappers.c @@ -421,6 +421,7 @@ static PyObject *WraptObjectProxy_iter(WraptObjectProxyObject *self) static PyMethodDef WraptObjectProxy_methods[] = { { "__dir__", (PyCFunction)WraptObjectProxy_dir, METH_NOARGS, 0 }, + { NULL, NULL }, }; static PyGetSetDef WraptObjectProxy_getset[] = {