the Append also does an INCREF, that's one more than we need.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42227 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-10-22 04:13:04 +00:00
parent d819fba8ae
commit cd0a59fb7f

View File

@@ -1822,6 +1822,7 @@ PyObject* wxPy_ConvertList(wxListBase* listbase) {
wxObj = node->GetData();
pyObj = wxPyMake_wxObject(wxObj,false);
PyList_Append(pyList, pyObj);
Py_DECREF(pyObj); // the Append also does an INCREF, that's one more than we need.
node = node->GetNext();
}
wxPyEndBlockThreads(blocked);