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 gvanrossum
Recipients amaury.forgeotdarc, gvanrossum, ronaldoussoren
Date 2007-11-27.18:39:40
SpamBayes Score 0.06426571
Marked as misclassified No
Message-id <1196188781.59.0.520499001391.issue1402@psf.upfronthosting.co.za>
In-reply-to
Content
> No, _PyGILState_Fini does not invoke any python code

You're right. It calls PyThread_delete_key().  I thought this would
delete entries from a dictionary (thereby potentially invoking Python
code via Py_DECREF()), but it doesn't -- it just frees some memory.

So I'm okay with swapping the order in 2.6 and 3.0.  I'm still not 100%
comfortable with doing this in 2.5, especially since Ronald found a
work-around for his immediate issue.
History
Date User Action Args
2007-11-27 18:39:41gvanrossumsetspambayes_score: 0.0642657 -> 0.06426571
recipients: + gvanrossum, ronaldoussoren, amaury.forgeotdarc
2007-11-27 18:39:41gvanrossumsetspambayes_score: 0.0642657 -> 0.0642657
messageid: <1196188781.59.0.520499001391.issue1402@psf.upfronthosting.co.za>
2007-11-27 18:39:41gvanrossumlinkissue1402 messages
2007-11-27 18:39:40gvanrossumcreate