[
Lists Home |
Date Index |
Thread Index
]
John Cowan wrote:
> ...
> Since Python generators are reified and available to the Python level,
> they seem like continuations to me.
A generator is not a continuation because it can be restarted at most
once which greatly simplies the implementation. If you want full
continuations you have to use Stackless Python.
Paul Prescod
|