0

There is a GIL in CPython, and I heard that PyPy does not have that problem. Is this true?

tshepang
  • 12,111
  • 21
  • 91
  • 136
lifei
  • 235
  • 2
  • 10

1 Answers1

3

No, PyPy still has a GIL. Jython and IronPython don't. However, there is an effort to replace it with STM, see http://pypy.org/tmdonate.html for details.

fijal
  • 3,190
  • 18
  • 21