]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_app_ex.py
Removed Loop and IsLooped methods, other cleanup
[wxWidgets.git] / wxPython / src / _app_ex.py
index e630afa6f41bdb23bf7c5883c2790f1eec7fd6c6..bae7df624e75cdf8622922e7b089a94804229945 100644 (file)
@@ -165,6 +165,9 @@ your Mac."""
         if redirect:
             self.RedirectStdio(filename)
 
+        # Use Python's install prefix as the default  
+        wx.StandardPaths.Get().SetInstallPrefix(_sys.prefix)
+
         # This finishes the initialization of wxWindows and then calls
         # the OnInit that should be present in the derived class
         self._BootstrapApp()
@@ -206,7 +209,8 @@ your Mac."""
     def SetOutputWindowAttributes(self, title=None, pos=None, size=None):
         """
         Set the title, position and/or size of the output window if
-        the stdio has been redirected.
+        the stdio has been redirected.  This should be called before
+        any output would cause the output window to be created.
         """
         if self.stdioWin:
             if title is not None: