[Pythonmac-SIG] ASL library

2013-05-15 Thread Ronald Oussoren
Hi, With OSX 10.8 the stdout and stderr streams of applications no longer end up in Console.app, which is fairly annoying when debugging problems in applications created with py2app. I've been researching how I can work around this, and seem to be successfull (the fix is in the repository, and

[Pythonmac-SIG] py2app + pyqt: Differences between command-line and double-click

2013-05-15 Thread Berg, Stuart
Hi, I'm using py2app to packages my (cross-platform) PyQt app into a Mac OS X application bundle. (py2app is great, btw!) I was wondering if anyone could point me to some documentation that explains in detail how a python app bundle's launch process differs from launching the python app direc

Re: [Pythonmac-SIG] py2app + pyqt: Differences between command-line and double-click

2013-05-15 Thread Michael McCracken
Hi, I answered on stack overflow too - but the short version is call show() *then also call* raise_() on your main window. The answer to an earlier version of this question has a couple of links for more background: http://stackoverflow.com/questions/3662559/why-does-my-pyqt-application-open-in-t

Re: [Pythonmac-SIG] py2app + pyqt: Differences between command-line and double-click

2013-05-15 Thread Berg, Stuart
Hi Michael, Thanks for your response.  I am already calling show() and then raise() (though my SO question didn't make that clear -- sorry about that).  I think I'm having a different issue than the one in the link you provided, because my app behaves correctly when launched from the command

Re: [Pythonmac-SIG] py2app + pyqt: Differences between command-line and double-click

2013-05-15 Thread Michael McCracken
There aren't any other window-focus related gotchas that I know of in the bootstrap code, and I've looked at most of it - can you share more about your program, and perhaps show what your setup.py looks like? On Wed, May 15, 2013 at 2:31 PM, Berg, Stuart wrote: > Hi Michael, > > Thanks for yo

Re: [Pythonmac-SIG] py2app + pyqt: Differences between command-line and double-click

2013-05-15 Thread Ronald Oussoren
On 15 May, 2013, at 22:32, "Berg, Stuart" wrote: > Hi, > > I'm using py2app to packages my (cross-platform) PyQt app into a Mac OS X > application bundle. (py2app is great, btw!) > > I was wondering if anyone could point me to some documentation that explains > in detail how a python app bu