From 3bee9be6f858002dd80a186aa78dae869b68bdb3 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 26 Mar 2012 19:21:52 +0000 Subject: [PATCH] Fix typo and do a little cleanup git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@71017 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- etg/gdicmn.py | 2 +- src/wxpy_api.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/etg/gdicmn.py b/etg/gdicmn.py index 04134134..ded8525f 100644 --- a/etg/gdicmn.py +++ b/etg/gdicmn.py @@ -131,7 +131,7 @@ def run(): # wxSize tweaks c = module.find('wxSize') - # Used for testing releaseing or holding the GIL in giltest.py + # Used for testing releasing or holding the GIL in giltest.py #c.find('wxSize').findOverload('int width, int height').releaseGIL() #c.find('DecBy').findOverload('int dx, int dy').releaseGIL() #c.find('IncBy').findOverload('int dx, int dy').releaseGIL() diff --git a/src/wxpy_api.h b/src/wxpy_api.h index 34d75731..865b9c83 100644 --- a/src/wxpy_api.h +++ b/src/wxpy_api.h @@ -55,7 +55,7 @@ inline PyObject* wx2PyString(const wxString& str) { } -// Calls from Python to wxWindows code should be wrapped in calls to these +// Calls from Python to wxWidgets code should be wrapped in calls to these // functions: inline PyThreadState* wxPyBeginAllowThreads() { PyThreadState* saved = PyEval_SaveThread(); // Like Py_BEGIN_ALLOW_THREADS;