[issue18231] What's new in Python should explain what's new in UCD

Alexander Belopolsky report at bugs.python.org
Sun Jun 16 20:28:29 CEST 2013


Alexander Belopolsky added the comment:

Here is another change that I think deserves an explicit mention in "What's New":

Python 3.3.2
>>> exec('a\u17B4 = 5')
>>> eval('a\u17B4')
5

Python 3.2.5
>>> exec('a\u17B4 = 5')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<string>", line 1
    a឴ = 5
       ^
SyntaxError: invalid character in identifier

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue18231>
_______________________________________


More information about the Python-bugs-list mailing list