[Python-checkins] peps: Gordo's new PEPs

georg.brandl python-checkins at python.org
Wed Mar 23 21:24:40 CET 2011


http://hg.python.org/peps/rev/58123efe26e0
changeset:   88:58123efe26e0
user:        Barry Warsaw <barry at python.org>
date:        Mon Aug 14 14:48:38 2000 +0000
summary:
  Gordo's new PEPs

files:
  pep-0219.txt |  25 +++++++++++++++++++++++++
  pep-0220.txt |  26 ++++++++++++++++++++++++++
  2 files changed, 51 insertions(+), 0 deletions(-)


diff --git a/pep-0219.txt b/pep-0219.txt
new file mode 100644
--- /dev/null
+++ b/pep-0219.txt
@@ -0,0 +1,25 @@
+PEP: 219
+Title: Stackless Python
+Version: $Revision$
+Author: gmcm at 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:
diff --git a/pep-0220.txt b/pep-0220.txt
new file mode 100644
--- /dev/null
+++ b/pep-0220.txt
@@ -0,0 +1,26 @@
+PEP: 220
+Title: Coroutines, Generators, Continuations
+Version: $Revision$
+Author: gmcm at hypernet.com (Gordon McMillan)
+Status: Active
+Type: Information
+Created: 14-Aug-2000
+Post-History:
+
+
+Abstract
+
+    Demonstrates why the changes described in the stackless PEP are
+    desirable.  A low-level continuations module exists.  With it,
+    coroutines and generators and "green" threads can be written.  A
+    higher level module that makes coroutines and generators easy to
+    create is desirable (and being worked on).  The focus of this PEP
+    is on showing how coroutines, generators, and green threads can
+    simplify common programming problems.
+
+
+
+Local Variables:
+mode: indented-text
+indent-tabs-mode: nil
+End:

-- 
Repository URL: http://hg.python.org/peps


More information about the Python-checkins mailing list