[issue7812] Call to gestalt('sysu') on OSX can lead to freeze in wxPython apps

2010-02-07 Thread Ronald Oussoren
Ronald Oussoren added the comment: Removed the call to gestalt('sysu') in r78056 (trunk), r78057 (2.6), r78058 (3.x), r78060 (3.1) (Also changing the type to 'behavior' instead of 'crash' because this is not a crashing bug in python). -- resolution: -> fixed stage: -> committed/rej

[issue7812] Call to gestalt('sysu') on OSX can lead to freeze in wxPython apps

2010-02-07 Thread Ronald Oussoren
Ronald Oussoren added the comment: Two short notes: 1) The call to gestalt('sysu') is basicly dead code and will be removed 2) Running the GUI runloop in a thread that is not the main thread is AFAIK not supported by Apple. I'm not 100% sure about the Carbon libraries, but in Cocoa the main

[issue7812] Call to gestalt('sysu') on OSX can lead to freeze in wxPython apps

2010-01-30 Thread Robin Dunn
Changes by Robin Dunn : -- nosy: +robind ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/

[issue7812] Call to gestalt('sysu') on OSX can lead to freeze in wxPython apps

2010-01-30 Thread Martin v . Löwis
Changes by Martin v. Löwis : -- versions: -Python 2.5 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue7812] Call to gestalt('sysu') on OSX can lead to freeze in wxPython apps

2010-01-30 Thread Peter Hansen
New submission from Peter Hansen : In platform.mac_ver() there is a call to look up Mac version info, which results in a call to gestalt.gestalt('sysu'). This call is useless since, as documented in comments in the function the "sysu" option no longer exists, but the call was left in "as docu