diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-10 15:36:00 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-02-10 15:36:00 (GMT) |
commit | 5e61f14c6dd29982da9364696bc864604b143a66 (patch) | |
tree | 7af9b9389674a1d50caa01a9154bc919697bd6d5 /Misc | |
parent | be5f91957f3d553a7cbbfdc43f66a3b30bb97aec (diff) | |
download | cpython-5e61f14c6dd29982da9364696bc864604b143a66.zip cpython-5e61f14c6dd29982da9364696bc864604b143a66.tar.gz cpython-5e61f14c6dd29982da9364696bc864604b143a66.tar.bz2 |
Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError
and a full traceback including line number.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.2.4 Core and Builtins ----------------- +- Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError + and a full traceback including line number. + - Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter. |