Which version of python added the else clause for for loops? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T06:32:12Zhttp://stackoverflow.com/feeds/question/682185http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/682185/which-version-of-python-added-the-else-clause-for-for-loops7Which version of python added the else clause for for loops?Moe2009-03-25T15:48:24Z2009-03-27T02:11:14Z
<p>Which was the first version of python to include the <a href="http://docs.python.org/tutorial/controlflow.html#break-and-continue-statements-and-else-clauses-on-loops" rel="nofollow">else clause for for loops</a>? </p>
<p>I find that the python docs usually does a good job of documenting when features were added, but I can't seem to find the info on this feature.
(It doesn't help that 'for' and 'else' are particularly difficult terms to google for on a programming website)</p>
http://stackoverflow.com/questions/682185/which-version-of-python-added-the-else-clause-for-for-loops/682234#6822347Answer by Pesto for Which version of python added the else clause for for loops?Pesto2009-03-25T15:57:15Z2009-03-25T15:57:15Z<p>It's been around since at least <a href="http://www.python.org/doc/1.4/ref/ref7.html#HDR2" rel="nofollow">1.4</a>, which is the <a href="http://www.python.org/doc/versions/" rel="nofollow">oldest version of the documentation</a> I know of.</p>
http://stackoverflow.com/questions/682185/which-version-of-python-added-the-else-clause-for-for-loops/684134#68413415Answer by dalke for Which version of python added the else clause for for loops?dalke2009-03-26T01:05:03Z2009-03-27T02:05:14Z<p>It's been present since the beginning. To see that, get the source from alt.sources, specifically the message titled "<a href="http://groups.google.com/group/alt.sources/browse%5Fthread/thread/74a577bbcfc4be0a/cbaaec4fbfebbbb6" rel="nofollow">Python 0.9.1 part 17/21</a>". The date is Feb 21, 1991. This post included the grammar definition, which states:</p>
<pre><code>for_stmt: 'for' exprlist 'in' exprlist ':' suite ['else' ':' suite]
</code></pre>
<p>You might be able to find the 0.9.0 sources if you try harder than I did, but as the first public release was 0.9.0 on 20 Feb, that would get you back one day. The 0.9.1 release was a minor patch that did not affect this part of the grammar.</p>
<p>(Is that a <a href="http://catb.org/jargon/html/U/UTSL.html" rel="nofollow">UTSL</a> reference or what? When was the last time <em>you</em> looked at a shar file? ;)</p>
<p>BTW, I reconstructed the original source and tweaked it a bit to compile under gcc-4.0 on my OS X 10.4 box. <a href="http://www.dalkescientific.com/writings/diary/archive/2009/03/27/python%5F0%5F9%5F1p1.html" rel="nofollow">Details</a> for those interested few, including <a href="http://dalkescientific.com/Python/python-0.9.1.tar.gz" rel="nofollow">python-0.9.1.tar.gz</a>.</p>
http://stackoverflow.com/questions/682185/which-version-of-python-added-the-else-clause-for-for-loops/688289#6882891Answer by dbr for Which version of python added the else clause for for loops?dbr2009-03-27T02:11:14Z2009-03-27T02:11:14Z<p>Since version 1.0.1, at least..</p>
<pre><code>Python 1.0.1 (Mar 27 2009)
Copyright 1991-1994 Stichting Mathematisch Centrum, Amsterdam
>>> for x in range(2):
... print x
... else:
... print "loop done"
...
0
1
loop done
</code></pre>