In using gevent, whenever a child greenlet throws an exception, I would like it to bubble up to the parent (and ideally have the parent throw the exception). In the documentation for greenlets, it says this is automatically done, but this doesn't appear to be the case in gevent.
How do I bubble up exceptions in gevent?
Thanks!