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 mark.dickinson
Recipients ezio.melotti, kermit666, mark.dickinson
Date 2013-01-10.14:23:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1357827822.07.0.441786306982.issue16917@psf.upfronthosting.co.za>
In-reply-to
Content
> The error is in a missing parenthesis after the append call

Well, that's one *possible* cause of the error.  But fixing that missing parenthesis isn't the only way to make the code correct, and Python doesn't have any reasonable way to guess which of the various possible errors you made or what you intended to write.  For example, the following is valid code:

things = ['a', 'b']
things.append('c'
for a in things)
History
Date User Action Args
2013-01-10 14:23:42mark.dickinsonsetrecipients: + mark.dickinson, ezio.melotti, kermit666
2013-01-10 14:23:42mark.dickinsonsetmessageid: <1357827822.07.0.441786306982.issue16917@psf.upfronthosting.co.za>
2013-01-10 14:23:41mark.dickinsonlinkissue16917 messages
2013-01-10 14:23:40mark.dickinsoncreate