|
|
|
|
|
by lambda_cube
5418 days ago
|
|
He's not saying that. He's saying that the GIL isn't a limitation to certain kinds of application, the kinds that Python usually is used for. The kinds of applications where the GIL would be a limitation, Python also has another limitation: slow performance, and performance is usually the reason to run things in parallel. With PyPy the performance will get better, and they also have a GC, so that hinder is removed. I don't really know if PyPy has a GIL, I would guess that they don't. |
|
PyPy still has GIL:
http://codespeak.net/pypy/dist/pypy/doc/faq.html#does-pypy-h...
For more information about it, check these sources:
Official PyPy Status Blog - http://morepypy.blogspot.com/2008/05/threads-and-gcs.html
Thinking about the GIL (read the whole thread, interesting stuff) - http://mail.python.org/pipermail/pypy-dev/2011-March/006991....