From 1e62f2f6deb633c34ce5e1f29219232fe72db760 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 13 Feb 2018 17:15:48 -0800 Subject: [PATCH] Ignore new exception related methods --- docs/sphinx/itemToModuleMap.json | 2 +- etg/app.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/sphinx/itemToModuleMap.json b/docs/sphinx/itemToModuleMap.json index 0f087ad7..988b93cb 100644 --- a/docs/sphinx/itemToModuleMap.json +++ b/docs/sphinx/itemToModuleMap.json @@ -815,7 +815,7 @@ "DirProperty":"wx.propgrid.", "DirSelector":"wx.", "DirSelectorPromptStr":"wx.", -"Direction":"wx.DataObject.", +"Direction":"wx.", "DisableAsserts":"wx.", "Display":"wx.", "DisplayChangedEvent":"wx.", diff --git a/etg/app.py b/etg/app.py index 8e09f5f9..a2c21474 100644 --- a/etg/app.py +++ b/etg/app.py @@ -68,6 +68,8 @@ def run(): c.find('OnExceptionInMainLoop').ignore() c.find('OnFatalException').ignore() c.find('OnUnhandledException').ignore() + c.find('StoreCurrentException').ignore() + c.find('RethrowStoredException').ignore() # Release the GIL for potentially blocking or long-running functions c.find('MainLoop').releaseGIL()