python-peps/pep-0219.txt

27 lines
644 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

PEP: 219
Title: Stackless Python
Version: $Revision$
Author: gmcm@hypernet.com (Gordon McMillan)
Status: Draft
Type: Standards Track
Python-Version: 2.1
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: