python-peps/pep-0219.txt

27 lines
644 B
Plaintext
Raw Normal View History

2000-08-14 10:48:38 -04:00
PEP: 219
Title: Stackless Python
Version: $Revision$
Author: gmcm@hypernet.com (Gordon McMillan)
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: