About GIL Questions!

Joshua Landau joshua.landau.ws at gmail.com
Thu Jun 20 09:55:55 EDT 2013


On 20 June 2013 05:13, Thanatos xiao <yanxiaopei199 at gmail.com> wrote:
> Hey everyone!
> Recently I see the python source code, but i still not understand about gil.
> first, why single core quicker multi-core ?

Chris Angelico touched on your other points, but not this as clearly;

Python threads run on one thread because they have to. It is not
because they're faster. Python theoretically would be faster if its
threads could run multicore, but it's really hard to make that work.

See http://pypy.org/tmdonate.html for an example of the acrobatics it
would take to get a propper GIL-free Python.



More information about the Python-list mailing list