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 Aivar.Annamaa
Recipients Aivar.Annamaa
Date 2017-01-24.08:32:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1485246779.15.0.108891177308.issue29359@psf.upfronthosting.co.za>
In-reply-to
Content
How quickly will you notice the bug here:

for sequence in ["Command",
                 "MagicCommand",
                 "Open",
                 "Save",
                 "SaveAs",
                 "NewFile",
                 "EditorTextCreated"
                 "ShellCommand",
                 "ShellInput",
                 "ShowView",
                 "HideView",
                 "TextInsert",
                 "TextDelete",
                 ]:
    do_something(sequence)

? 

Given the title of the issue, its probably not so hard, but usually a list literal is not the first thing to suspect.

Similar problem of missing comma may occur easily with multiline calls.

If concatenation without plus was deprecated, these mistakes would be so easy to notice.
History
Date User Action Args
2017-01-24 08:32:59Aivar.Annamaasetrecipients: + Aivar.Annamaa
2017-01-24 08:32:59Aivar.Annamaasetmessageid: <1485246779.15.0.108891177308.issue29359@psf.upfronthosting.co.za>
2017-01-24 08:32:59Aivar.Annamaalinkissue29359 messages
2017-01-24 08:32:58Aivar.Annamaacreate