Defer PEP 315.

This commit is contained in:
Raymond Hettinger 2009-05-29 07:02:18 +00:00
parent 05212a75f7
commit 23404af75c
1 changed files with 11 additions and 1 deletions

View File

@ -4,7 +4,7 @@ Version: $Revision$
Last-Modified: $Date$
Author: Raymond Hettinger <python@rcn.com>
W Isaac Carroll <icarroll@pobox.com>
Status: Draft
Status: Deferred
Type: Standards Track
Content-Type: text/plain
Created: 25-Apr-2003
@ -24,6 +24,16 @@ Notice
Deferred; see
http://mail.python.org/pipermail/python-dev/2006-February/060718.html
Subsequent efforts to revive the PEP in April 2009 did not
meet with success because no syntax emerged that could
compete with a while-True and an inner if-break.
A syntax was found for a basic do-while loop but it found
had little support because the condition was at the top:
do ... while <cond>:
<loop body>
Motivation