From: Dana Jansens Date: Sat, 21 Dec 2002 12:19:29 +0000 (+0000) Subject: incref the Py_None before returning it X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=925048fedfa855c5315e4951147d47b717637614;p=chaz%2Fopenbox incref the Py_None before returning it --- diff --git a/src/python.cc b/src/python.cc index 2c2f9ae3..0d5c90cb 100644 --- a/src/python.cc +++ b/src/python.cc @@ -19,6 +19,7 @@ static PyObject *shit(PyObject *self, PyObject *args) printf("SHIT CALLED!@!\n"); + Py_INCREF(Py_None); return Py_None; } @@ -36,7 +37,7 @@ static PyMethodDef OBMethods[] = { void initopenbox() { - PyClient_Type.ob_type = &PyType_Type; + OBClient_Type.ob_type = &PyType_Type; Py_InitModule("openbox", OBMethods); }