[Pyobjc-dev] Cocoa, httplib and threads? - Solved
Brought to you by:
ronaldoussoren
From: Greg E. <gre...@ca...> - 2011-07-22 07:13:14
|
I found out what was causing this. Turns out it was blocked importing encodings.ascii, trying to acquire the import lock. The reason it couldn't acquire the import lock is that the main module of my application was a stub that imported the real main module, which in turn started the event loop directly from the module code. So the whole app was running inside an import statement, holding on to the import lock. Once I fixed that, everything was fine. -- Greg |