Alex Gaynor <[email protected]> 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 <[email protected]>
<https://bugs.pypy.org/issue1549>
________________________________________
_______________________________________________
pypy-issue mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-issue

Reply via email to