From 19c1f2c444a1448c6939e6d86f0b9d27b34f07be Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Wed, 7 Apr 2010 13:16:51 +0200 Subject: [PATCH] Added missing sentinel in osx module's method defs. --- modules/send2trash_osx.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/send2trash_osx.c b/modules/send2trash_osx.c index 28d2aa4..f0df40c 100644 --- a/modules/send2trash_osx.c +++ b/modules/send2trash_osx.c @@ -30,6 +30,7 @@ static PyObject* send2trash_osx_send(PyObject *self, PyObject *args) static PyMethodDef TrashMethods[] = { {"send", send2trash_osx_send, METH_VARARGS, ""}, + {NULL, NULL, 0, NULL} }; PyMODINIT_FUNC