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 belopolsky
Recipients belopolsky, docs@python, ezio.melotti
Date 2013-06-16.18:28:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1371407309.53.0.132661040119.issue18231@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2013-06-16 18:28:29belopolskysetrecipients: + belopolsky, ezio.melotti, docs@python
2013-06-16 18:28:29belopolskysetmessageid: <1371407309.53.0.132661040119.issue18231@psf.upfronthosting.co.za>
2013-06-16 18:28:29belopolskylinkissue18231 messages
2013-06-16 18:28:29belopolskycreate