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-06.22:54:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1612652048.28.0.775062089825.issue43149@roundup.psfhosted.org>
In-reply-to
Content
The following:

try:
    pass
except ValueError, NameError as err:
    pass

results in:

    except ValueError, NameError as err:
                     ^
SyntaxError: expected ':'

However, what is missing here are some parentheses surrounding the exception types.
History
Date User Action Args
2021-02-06 22:54:08arobergesetrecipients: + aroberge
2021-02-06 22:54:08arobergesetmessageid: <1612652048.28.0.775062089825.issue43149@roundup.psfhosted.org>
2021-02-06 22:54:08arobergelinkissue43149 messages
2021-02-06 22:54:08arobergecreate