Details
-
Type:
Improvement
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 0.7
-
Component/s: Runtime (Boo.Lang)
-
Labels:None
-
Number of attachments :
Description
Python style reversed iteration (http://www.python.org/dev/doc/devel/whatsnew/node7.html).
Perhaps a more compact syntax
instead of
for i in reversed(xrange(1,4)):
... print i
something like
rfor i in xrange(1,4):
print i