Andre Roberge <andre.robe...@gmail.com> added the comment:

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

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue44780>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to