26 lines
619 B
Plaintext
26 lines
619 B
Plaintext
|
PEP: 219
|
|||
|
Title: Stackless Python
|
|||
|
Version: $Revision$
|
|||
|
Author: gmcm@hypernet.com (Gordon McMillan)
|
|||
|
Status: Active
|
|||
|
Type: Technical
|
|||
|
Created: 14-Aug-2000
|
|||
|
Post-History:
|
|||
|
|
|||
|
|
|||
|
Abstract
|
|||
|
|
|||
|
Argues for changes (mostly to ceval.c and frameobject.c) that
|
|||
|
disentangle Python's stack usage from the C stack. Each frame
|
|||
|
gets its own stacklet (just enough for its requirements). Also
|
|||
|
changes ceval.c so that the ceval.c does not cause the interpreter
|
|||
|
to recurse (although other C code may still do so). No impact on
|
|||
|
Python's syntax or semantics.
|
|||
|
|
|||
|
|
|||
|
|
|||
|
Local Variables:
|
|||
|
mode: indented-text
|
|||
|
indent-tabs-mode: nil
|
|||
|
End:
|