Squash exception on exit bug
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33635 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -173,11 +173,9 @@ your Mac."""
|
|||||||
self._BootstrapApp()
|
self._BootstrapApp()
|
||||||
|
|
||||||
|
|
||||||
def __del__(self):
|
def __del__(self, destroy=wx.PyApp.__del__):
|
||||||
try:
|
|
||||||
self.RestoreStdio() # Just in case the MainLoop was overridden
|
self.RestoreStdio() # Just in case the MainLoop was overridden
|
||||||
finally:
|
destroy(self)
|
||||||
wx.PyApp.__del__(self)
|
|
||||||
|
|
||||||
def Destroy(self):
|
def Destroy(self):
|
||||||
wx.PyApp.Destroy(self)
|
wx.PyApp.Destroy(self)
|
||||||
@@ -206,7 +204,10 @@ your Mac."""
|
|||||||
|
|
||||||
|
|
||||||
def RestoreStdio(self):
|
def RestoreStdio(self):
|
||||||
|
try:
|
||||||
_sys.stdout, _sys.stderr = self.saveStdio
|
_sys.stdout, _sys.stderr = self.saveStdio
|
||||||
|
except:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
def SetOutputWindowAttributes(self, title=None, pos=None, size=None):
|
def SetOutputWindowAttributes(self, title=None, pos=None, size=None):
|
||||||
|
Reference in New Issue
Block a user