From: Serhiy Storchaka Date: Sun, 10 Feb 2013 15:43:25 +0000 (+0200) Subject: Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError X-Git-Tag: v3.4.0a1~1402 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b8cbba5877df478966092ce069b6cedea8487c53;p=python Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError and a full traceback including line number. --- b8cbba5877df478966092ce069b6cedea8487c53 diff --cc Misc/NEWS index 2cfd48460a,9c3e3bee3b..c96627cef8 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,9 -12,9 +10,12 @@@ What's New in Python 3.4.0 Alpha 1 Core and Builtins ----------------- + - Issue #12983: Bytes literals with invalid \x escape now raise a SyntaxError + and a full traceback including line number. + +- Issue #16967: In function definition, evaluate positional defaults before + keyword-only defaults. + - Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter.