2000-08-14 10:48:38 -04:00
|
|
|
|
PEP: 219
|
|
|
|
|
Title: Stackless Python
|
|
|
|
|
Version: $Revision$
|
|
|
|
|
Author: gmcm@hypernet.com (Gordon McMillan)
|
2000-08-23 01:52:49 -04:00
|
|
|
|
Status: Draft
|
|
|
|
|
Type: Standards Track
|
|
|
|
|
Python-Version: 2.1
|
2000-08-14 10:48:38 -04:00
|
|
|
|
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:
|