[Python-ideas] Implementing Coroutines (was Cofunctions - Back to Basics)

Mark Shannon mark at hotpy.org
Fri Oct 28 12:16:16 CEST 2011


Errata to previous email.

 >
 >    def co_yield(value):
 >        'Yields (returns) value back to caller of resume() method.'

Should have been

     @staticmethod
     def co_yield(value):
         'Yields (returns) value back to caller of resume() method.'

Cheers,
Mark.



More information about the Python-ideas mailing list