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, serhiy.storchaka
Date 2021-07-30.18:11:04
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1627668664.11.0.616050073503.issue44780@roundup.psfhosted.org>
In-reply-to
Content
Here's another related case.

Python 3.9:

>>> a = 1½
  File "<stdin>", line 1
    a = 1½
         ^
SyntaxError: invalid character '½' (U+00BD)

Python 3.10
>>> a = 1½
  File "<stdin>", line 1
    a = 1½
        ^
SyntaxError: invalid decimal literal
History
Date User Action Args
2021-07-30 18:11:04arobergesetrecipients: + aroberge, serhiy.storchaka, pablogsal
2021-07-30 18:11:04arobergesetmessageid: <1627668664.11.0.616050073503.issue44780@roundup.psfhosted.org>
2021-07-30 18:11:04arobergelinkissue44780 messages
2021-07-30 18:11:04arobergecreate