Stackless in PyPy and PyPy + greenlet - differences
问题 New version of PyPy ships with integrated Stackless . As far as I know the bundled Stackless is not the same as the origin Stackless from 2001 with continuations. So mainly it is the green threads framework with dispatcher. Greenlet is a spin-of Stackless which provides the Stackless green threads functionality as an extension module. Is there any benefit from using "native" Stackless from PyPy than PyPy + greenlet + some dispatcher (eg: gevent )? Or the problem is that i can't use those