[pypy-issue] [issue1549] eventlet errors on PyPy, but not CPython

Alex Gaynor tracker at bugs.pypy.org
Fri Jul 19 19:25:53 CEST 2013


Alex Gaynor <alex.gaynor at gmail.com> added the comment:

Ok, now works without eventlet:

import greenlet


def _noop():
    pass


def main():
    coro = greenlet.greenlet(_noop)
    coro.throw(greenlet.GreenletExit)

if __name__ == "__main__":
    main()

________________________________________
PyPy bug tracker <tracker at bugs.pypy.org>
<https://bugs.pypy.org/issue1549>
________________________________________


More information about the pypy-issue mailing list