This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author exarkun
Recipients eric, exarkun, pitrou
Date 2009-05-27.19:51:38
SpamBayes Score 6.6657053e-06
Marked as misclassified No
Message-id <1243453900.58.0.620924565571.issue6073@psf.upfronthosting.co.za>
In-reply-to
Content
pygtk doesn't release the GIL around its internal calls unless you call
threads_init.  So I think this is pretty clearly just a misuse of the
pygtk library.  There's nothing at all Python can do about it.  If an
extension library doesn't release the GIL, no Python code can run
concurrently with it.  In this case, the extension API you've invoked is
the Gtk main loop, which runs until you stop it, usually right before
your gtk app exits.
History
Date User Action Args
2009-05-27 19:51:40exarkunsetrecipients: + exarkun, pitrou, eric
2009-05-27 19:51:40exarkunsetmessageid: <1243453900.58.0.620924565571.issue6073@psf.upfronthosting.co.za>
2009-05-27 19:51:39exarkunlinkissue6073 messages
2009-05-27 19:51:38exarkuncreate