[Python-checkins] peps: Parallel => Lockstep everywhere. (original) (raw)

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


http://hg.python.org/peps/rev/3c9e17945a3c changeset: 60:3c9e17945a3c user: Barry Warsaw <barry at python.org> date: Fri Jul 28 05:48:25 2000 +0000 summary: Parallel => Lockstep everywhere.

Replaced the reference implementation with one that's closer to what the C code will actually look like; i.e. it obeys the iteration protocol.

Other grammar and spelling fixes.

files: pep-0201.txt | 52 ++++++++++++++++++++------------------- 1 files changed, 27 insertions(+), 25 deletions(-)

diff --git a/pep-0201.txt b/pep-0201.txt --- a/pep-0201.txt +++ b/pep-0201.txt @@ -1,5 +1,5 @@ PEP: 201 -Title: Parallel Iteration +Title: Lockstep Iteration Version: RevisionRevisionRevision Author: bwarsaw at beopen.com (Barry A. Warsaw) Python-Version: 2.0 @@ -10,14 +10,14 @@

Introduction

Motivation @@ -33,9 +33,9 @@ iterations by introducing a new builtin function called `zip'.

-Parallel For-Loops +Lockstep For-Loops

@@ -140,21 +140,23 @@ Reference Implementation

 Here is a reference implementation, in Python of the zip()

BDFL Pronouncements @@ -165,8 +167,8 @@ - The function's name. An earlier version of this PEP included an open issue listing 20+ proposed alternative names to zip(). In the face of no overwhelmingly better choice, the BDFL strongly

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



More information about the Python-checkins mailing list