peps: 3c9e17945a3c (original) (raw)

--- a/pep-0201.txt +++ b/pep-0201.txt @@ -1,5 +1,5 @@ PEP: 201 -Title: Parallel Iteration +Title: Lockstep Iteration Version: RevisionRevisionRevision Author: bwarsaw@beopen.com (Barry A. Warsaw) Python-Version: 2.0 @@ -10,14 +10,14 @@ Post-History: 27-Jul-2000 Introduction

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

def zip(*args): if not args: raise TypeError('zip() expects one or more sequence arguments') ret = []

BDFL Pronouncements @@ -165,8 +167,8 @@ BDFL Pronouncements - 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

- zip() shall be a built-in function.