- Add note that building with --disable-shared at the moment doesn't work

git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@393 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
tchernobog 2006-02-23 09:26:27 +00:00
parent 8eeeaae3f5
commit 075e12d14d
3 changed files with 8 additions and 2 deletions

View file

@ -103,7 +103,8 @@ PythonPolicy::sort_queue(Scheduler::event event) const
PyObject* pEvent = PyInt_FromLong(event);
PyObject* pMethodName = PyString_FromString("async_sort_queue");
PyObject* retval = PyObject_CallMethodObjArgs(_adapter, pMethodName, pEvent, NULL);
Py_DECREF(retval);
// Why we haven't to decref this?
// Py_DECREF(retval);
Py_DECREF(pMethodName);
Py_DECREF(pEvent);