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 <rep...@bugs.python.org>
<http://bugs.python.org/issue18231>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to