From: Robin Dunn Date: Sat, 22 May 2004 02:57:09 +0000 (+0000) Subject: Decref items added to lists X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ad411ab2f1582af5c334eb4d63aa1d610d780f9c?ds=inline Decref items added to lists git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27386 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/src/_display.i b/wxPython/src/_display.i index f0e9fbbb40..db32d011a8 100644 --- a/wxPython/src/_display.i +++ b/wxPython/src/_display.i @@ -167,6 +167,7 @@ function is not supported at all on this platform.", ""); wxVideoMode* m = new wxVideoMode(arr.Item(i)); PyObject* pyObj = wxPyConstructObject(m, wxT("wxVideoMode"), true); PyList_Append(pyList, pyObj); + Py_DECREF(pyObj); } wxPyEndBlockThreads(blocked); return pyList; diff --git a/wxPython/src/_functions.i b/wxPython/src/_functions.i index 88a1d05b6b..4e7423d506 100644 --- a/wxPython/src/_functions.i +++ b/wxPython/src/_functions.i @@ -210,10 +210,13 @@ wxWindow* wxGetTopLevelParent(wxWindow *win); -// Get the state of a key (true if pressed, false if not) -// This is generally most useful getting the state of -// the modifier or toggle keys. -bool wxGetKeyState(wxKeyCode key); +DocDeclStr( + bool , wxGetKeyState(wxKeyCode key), + "Get the state of a key (true if pressed or toggled on, false if not.) +This is generally most useful getting the state of the modifier or +toggle keys. On some platforms those may be the only keys that work. +", ""); + //--------------------------------------------------------------------------- diff --git a/wxPython/src/_pen.i b/wxPython/src/_pen.i index fc37c53409..cf9d76b28c 100644 --- a/wxPython/src/_pen.i +++ b/wxPython/src/_pen.i @@ -56,8 +56,11 @@ public: int count = self->GetDashes(&dashes); bool blocked = wxPyBeginBlockThreads(); PyObject* retval = PyList_New(0); - for (int x=0; x