diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-24 20:58:14 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-03-24 20:58:14 (GMT) |
commit | a54aae068325551bcc70c151b483f1b38ca0c687 (patch) | |
tree | b9e9f9d33b597ea84421d22c19cbbb6f551c90ef /Misc | |
parent | 793c14ea2965a1584a7f85aa663d0fd7cfdef629 (diff) | |
download | cpython-a54aae068325551bcc70c151b483f1b38ca0c687.zip cpython-a54aae068325551bcc70c151b483f1b38ca0c687.tar.gz cpython-a54aae068325551bcc70c151b483f1b38ca0c687.tar.bz2 |
Issue #23622: Unknown escapes in regular expressions that consist of ``'\'``
and ASCII letter now raise a deprecation warning and will be forbidden in
Python 3.6.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -30,6 +30,10 @@ Core and Builtins Library ------- +- Issue #23622: Unknown escapes in regular expressions that consist of ``'\'`` + and ASCII letter now raise a deprecation warning and will be forbidden in + Python 3.6. + - Issue #23671: string.Template now allows to specify the "self" parameter as keyword argument. string.Formatter now allows to specify the "self" and the "format_string" parameters as keyword arguments. |