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, lys.nikolaou, pablogsal
Date 2022-01-03.12:02:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1641211344.13.0.594540055552.issue46240@roundup.psfhosted.org>
In-reply-to
Content
Given the following code containing an unclosed parenthesis:

a = (1, 2
b = 3

Here is the resulting SyntaxError:

> python ignore.py
  File "C:\...\ignore.py", line 1
    a = (1, 2
            ^
SyntaxError: invalid syntax. Perhaps you forgot a comma?

This incorrect hint is present in 3.10.1 and 3.11.0a3.
History
Date User Action Args
2022-01-03 12:02:24arobergesetrecipients: + aroberge, lys.nikolaou, pablogsal
2022-01-03 12:02:24arobergesetmessageid: <1641211344.13.0.594540055552.issue46240@roundup.psfhosted.org>
2022-01-03 12:02:24arobergelinkissue46240 messages
2022-01-03 12:02:24arobergecreate