Re: [xml-dev] The Browser Wars are Dead! Long Live the Browser
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