Ignore new exception related methods

This commit is contained in:
Robin Dunn
2018-02-13 17:15:48 -08:00
parent 76bdfdb4c9
commit 1e62f2f6de
2 changed files with 3 additions and 1 deletions

View File

@@ -815,7 +815,7 @@
"DirProperty":"wx.propgrid.",
"DirSelector":"wx.",
"DirSelectorPromptStr":"wx.",
"Direction":"wx.DataObject.",
"Direction":"wx.",
"DisableAsserts":"wx.",
"Display":"wx.",
"DisplayChangedEvent":"wx.",

View File

@@ -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()