Tagged Questions

4
votes
3answers
327 views

Python generators and co-routines.

Can someone provide me with a brief introduction on how to use Python generators to implement coroutines?
2
votes
2answers
131 views

Overhead of Mono Tasklet/Co-Routines

Hi, What are the main performance overheads (gc/stack copying...) of the new Mono Continuations/Tasklet framework? How does this overhead (coroutine performance / raw performance …
6
votes
5answers
283 views

Coroutines for game design?

I've heard that coroutines are a good way to structure games (e.g., PEP 342: "Coroutines are a natural way of expressing many algorithms, such as simulations, games...") but I'm ha …
8
votes
4answers
244 views

Is it safe to yield from within a “with” block in Python (and why)?

The combination of coroutines and resource acquisition seems like it could have some unintended (or unintuitive) consequences. The basic question is whether or not something like …