[issue8532] Refinements to Python 3 New GIL

2010-04-26 Thread Antoine Pitrou
Changes by Antoine Pitrou : -- resolution: -> duplicate status: open -> closed superseder: -> Convoy effect with I/O bound threads and New GIL ___ Python tracker ___ ___

[issue8532] Refinements to Python 3 New GIL

2010-04-25 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: -> pitrou nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8532] Refinements to Python 3 New GIL

2010-04-25 Thread Gregory P. Smith
Gregory P. Smith added the comment: since the other discussion is ongoing on issue7946 i posted my comment there. -- nosy: +gregory.p.smith ___ Python tracker ___ ___

[issue8532] Refinements to Python 3 New GIL

2010-04-25 Thread Brian Curtin
Changes by Brian Curtin : -- nosy: +nirai stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8532] Refinements to Python 3 New GIL

2010-04-25 Thread Alex
Changes by Alex : -- nosy: +alex ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/

[issue8532] Refinements to Python 3 New GIL

2010-04-25 Thread David Beazley
David Beazley added the comment: Can't decide whether this should be attached to Issue 7946 or not. I will also post it there. (Feel free to close this issue if you want to keep 7946 alive). -- ___ Python tracker

[issue8532] Refinements to Python 3 New GIL

2010-04-25 Thread David Beazley
New submission from David Beazley : The attached patch makes two simple refinements to the new GIL implemented in Python 3.2. Each is briefly described below. 1. Changed mechanism for thread time expiration In the current implementation, threads perform a timed-wait on a condition variable.