First page Back Continue Last page Summary Graphics
Stackless Python
Refactor VM to reduce use of C stack
- Std Python calls C function for each Python function
 
Expose continuation interface
- Used for coroutines, microthreads
 
Problems
- Calling back into Python from C
 - Patches are large, complex
 - Not clear if continuations are useful
 
Notes: