]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_app_ex.py
test wxString's char<->wchar_t ctors
[wxWidgets.git] / wxPython / src / _app_ex.py
index 47881890441d1aa9b3f875350a6d38dddbbfd074..f70c78c26f9600dd960fc06605ce1e6c835a2cc2 100644 (file)
@@ -86,7 +86,7 @@ class App(wx.PyApp):
     ``self.SetTopWindow(frame)``.
 
     :see: `wx.PySimpleApp` for a simpler app class that can be used
-    directly.
+           directly.
     """
     
     outputWindowClass = PyOnDemandOutputWindow
@@ -133,6 +133,8 @@ This program needs access to the screen. Please run with 'pythonw',
 not 'python', and only when you are logged in on the main display of
 your Mac."""
                     _sys.exit(1)
+            except SystemExit:
+                raise
             except:
                 pass
 
@@ -234,7 +236,6 @@ class PySimpleApp(wx.App):
         wx.App.__init__(self, redirect, filename, useBestVisual, clearSigInt)
         
     def OnInit(self):
-        wx.InitAllImageHandlers()
         return True