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 aroberge
Recipients aroberge
Date 2021-02-03.21:05:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1612386350.35.0.116114193403.issue43121@roundup.psfhosted.org>
In-reply-to
Content
A missing comma between list items results in an incorrect message.


Python 3.10.0a5 (tags/v3.10.0a5:b0478d7, Feb  3 2021, 01:44:54) [MSC v.1928 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.

>>> a = [1, 2 3]
  File "<stdin>", line 1
    a = [1, 2 3]
         ^
SyntaxError: did you forget parentheses around the comprehension target?
History
Date User Action Args
2021-02-03 21:05:50arobergesetrecipients: + aroberge
2021-02-03 21:05:50arobergesetmessageid: <1612386350.35.0.116114193403.issue43121@roundup.psfhosted.org>
2021-02-03 21:05:50arobergelinkissue43121 messages
2021-02-03 21:05:50arobergecreate