This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author trenholmes
Recipients georg.brandl, trenholmes
Date 2008-12-20.03:08:08
SpamBayes Score 0.02831833
Marked as misclassified No
Message-id <1229742490.8.0.685614291877.issue4703@psf.upfronthosting.co.za>
In-reply-to
Content
Summary: Sample code for enumerate contains a syntax error. The same
code reads:

>>> for i, season in enumerate(['Spring', 'Summer', 'Fall', 'Winter')]:
...     print(i, season)

Where the parenthesis and square bracket to the left of the colon in the
for line are backwards.  It should read:

>>> for i, season in enumerate(['Spring', 'Summer', 'Fall', 'Winter']):

Where: http://docs.python.org/dev/3.0/library/functions.html
History
Date User Action Args
2008-12-20 03:08:10trenholmessetrecipients: + trenholmes, georg.brandl
2008-12-20 03:08:10trenholmessetmessageid: <1229742490.8.0.685614291877.issue4703@psf.upfronthosting.co.za>
2008-12-20 03:08:09trenholmeslinkissue4703 messages
2008-12-20 03:08:08trenholmescreate