Can someone provide me with a brief introduction on how to use Python generators to implement coroutines?

link|improve this question

feedback

3 Answers

up vote 29 down vote accepted

This was presented about a month after this question: http://www.dabeaz.com/coroutines/index.html

Dave's presentation is excellent and explains exactly how coroutines can be made with Python 2.5+ - well recommended.

link|improve this answer
Oh wow, this is +10 (the link is my canonical reference for Python coroutines) – kaizer.se Nov 3 '09 at 0:32
feedback

I suggest you start here:

Coroutines via Enhanced Generators

http://www.python.org/dev/peps/pep-0342/

By Guido van Rossum and Phillip J. Eby

link|improve this answer
feedback

Use the google, Luke.

The latest release of Python (version 2.5) has a new feature called coroutines. This post looks at what coroutines are and how to use them. ...

http://antroy.blogspot.com/2007/04/python-coroutines.html

link|improve this answer
1  
"The latest release of Python (version 2.5)"... Uhh... – Evan Fosmark Feb 19 '09 at 5:53
2  
The differences between Python 2.6 and 2.5 are small enough that a 2007 article is NOT uselessly out of date. – S.Lott Feb 19 '09 at 12:13
1  
and actually this article is a great brief introduction to generators and coroutines! – Davide Dec 16 '09 at 22:10
3  
Just so ya know, googling for "python coroutines" shows this stack overflow article, so it IS the Google :) – David Ackerman Nov 29 '10 at 4:58
2  
Telling some one to use google is not helpful, but your link was. – freakTheMighty Aug 7 '11 at 3:21
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.