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, pablogsal
Date 2021-07-30.14:52:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1627656754.25.0.173168289644.issue44780@roundup.psfhosted.org>
In-reply-to
Content
Consider the following:

>>> a = (1‚ 2)  # not a comma, but unicode character.

Using Python 3.9 (and earlier), we get the following correct information

>>> a = (1‚ 2)
  File "<stdin>", line 1
    a = (1‚ 2)
          ^
SyntaxError: invalid character '‚' (U+201A)

Using Python 3.10, we get the following incorrect information instead:

>>> a = (1‚ 2)
  File "<stdin>", line 1
    a = (1‚ 2)
         ^
SyntaxError: invalid decimal literal
History
Date User Action Args
2021-07-30 14:52:34arobergesetrecipients: + aroberge, pablogsal
2021-07-30 14:52:34arobergesetmessageid: <1627656754.25.0.173168289644.issue44780@roundup.psfhosted.org>
2021-07-30 14:52:34arobergelinkissue44780 messages
2021-07-30 14:52:34arobergecreate