Tagged Questions
13
votes
5answers
1k 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 having a hard time ...
12
votes
4answers
405 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 this works:
def ...
12
votes
3answers
4k views
Python generators and co-routines
Can someone provide me with a brief introduction on how to use Python generators to implement coroutines?
9
votes
3answers
310 views
In python is there a way to check if a function is a “generator function” before calling it?
Lets say I have two functions:
def foo():
return 'foo'
def bar():
yield 'bar'
The first one is a normal function, and the second is a generator function. Now I want to write something like ...
7
votes
2answers
252 views
How do coroutines improve performance
I've been seeing a lot of talks and articles on coroutines in python. They are considered to be "microthreads" and I've heard they improve performance.
How do coroutines improve performance? From ...
5
votes
1answer
150 views
Python: Yield Dict Elements in Producing Coroutines?
Before I say a word, let me thank the community for being the authoritative location for my programming queries as of recent. And pretend those compliments weren't expressed using words. Anyway, the ...
4
votes
1answer
697 views
What's the advantage of stack-less Python's microthread than Lua's coroutine in state machine implementation for game?
Any advantage on stack-less python implentation than Lua's coroutine?
What's the difference of them?
3
votes
2answers
46 views
How are generators and coroutines implemented in CPython?
I've read that in CPython, the interpreter stack (the list of Python functions called to reach this point) is mixed with the C stack (the list of C functions that were called in the interpreter's own ...
3
votes
1answer
132 views
Problem using greenlet to execute multiple functions simultaneously
The following script has the purpose of execute many functions simultaneously, but i don't have idea why it's not working correctly.
The functions are executed in sequential way, not parallel.
I ...
3
votes
2answers
219 views
Parallel programming with coroutines in Python
Coroutines are a great paradigm to ease concurrent programming. And most of the time, concurrent tasks are easily parallelizable. In Go language, it is easy to use goroutines to perform parallel ...
3
votes
3answers
358 views
Python generators and coroutines
I am studying coroutines and generators in various programming languages.
I was wondering if there is a cleaner way to combine together two coroutines implemented via generators than yielding back at ...
3
votes
2answers
206 views
Are Python coroutines actually used in a project?
I read this page on coroutines from David Beazley a while ago, and I wondered if any actual Python-based software made use of them ?
How is it coroutines seem like the most unused feature in Python ?
...
3
votes
1answer
190 views
What is offered by coroutines in python that improve a naive consumer/producer setup?
I've read a little about coroutines, in particular with python, and something is not entirely obvious to me.
I have implemented a producer/consumer model, a basic version of which is as follows:
...
2
votes
2answers
88 views
Equivalent C++ to Python generator pattern
I've got some example Python code that I need to mimic in C++. I do not require any specific solution (such as co-routine based yield solutions, although they would be acceptable answers as well), I ...
2
votes
2answers
161 views
Eventlet and Python daemon, Foo not called?
I am trying to build a Python deamon which listen to a queue (Redis Kombu).
Grab the task and spawn a greenthread to process this task.
I can receive the task and consume it without trouble but when ...
1
vote
1answer
60 views
Python coroutine that consumes and produces
In a web-crawler of mine, I have a class that keeps track of urls to crawl, removing duplicates, etc:
class VisitOnlyOnceClerk(object):
def __init__(self):
self.visited = set()
...
1
vote
1answer
195 views
Logging across multiple co-routines / greenlets / microthreads with Gevent?
What is the best approach to logging events that span multiple running co-routines / microthreads / Greenlets using Python's gevent?
Example events I would like to log could include the creation of ...
1
vote
2answers
76 views
Can I express this as a generator / coroutine?
Suppose I have the following class:
class MyGen(object):
def next(self):
return X()
def send(self, x):
return f(x)
Is it possible to express it as a single function, using the yield ...
1
vote
1answer
382 views
How to stop a coroutines / thread in Python eventlet
When I use the eventlet package to run a multi-coroutines task, even when the coroutines pool is empty, the program won't continue to run, but will get stuck in a loop. Following is my code and the ...
1
vote
1answer
167 views
python - support .send() for a class?
Writing a class, how do I implement
foo.send(item) ?
__iter__ allows iterating over the class like a generator, what if I want it to be a coroutine?
1
vote
2answers
238 views
How can I do python/ruby/javascript style generators in actionscript?
I want to use coroutines in actionscript to implement a state machine.
I'd like to be able to do something like the following
function stateMachine():void
{
sendBytes(0xFFFF);
var ...
0
votes
1answer
89 views
Coroutines in python
I read the following code from a book, and have some questions about it.
def coroutine(func):
def start(*args, **kwargs):
g = func(*args, **kwargs)
g.next()
return g
...