From 774605456f8e23caf92d7feb914d8fb953095dd2 Mon Sep 17 00:00:00 2001 From: Mariatta Date: Tue, 12 Sep 2017 21:06:37 -0700 Subject: [PATCH] Mark PEP 212 as Rejected (GH-421) - author unreachable - enumerate() covers the use case Closes https://github.com/python/peps/issues/207 --- pep-0212.txt | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/pep-0212.txt b/pep-0212.txt index bd5887bcfa2..cf7ab8a8968 100644 --- a/pep-0212.txt +++ b/pep-0212.txt @@ -3,7 +3,7 @@ Title: Loop Counter Iteration Version: $Revision$ Last-Modified: $Date$ Author: nowonder@nowonder.de (Peter Schneider-Kamp) -Status: Deferred +Status: Rejected Type: Standards Track Content-Type: text/x-rst Created: 22-Aug-2000 @@ -11,6 +11,14 @@ Python-Version: 2.1 Post-History: +Rejection Notice +================ + +This PEP has been rejected. ``enumerate()``, introduced in PEP 279 [6]_, +covers the use-case proposed in this PEP, and the PEP author has been +unreachable. + + Introduction ============ @@ -175,6 +183,8 @@ References .. [5] http://sourceforge.net/patch/download.php?id=101178 +.. [6] PEP 279, The enumerate() built-in function, Hettinger + https://www.python.org/dev/peps/pep-0279/ ..