[Python-checkins] bpo-30147: Add re.escape changes to 3.7 What's New (GH-5978)

Ned Deily webhook-mailer at python.org
Sun Mar 4 18:07:00 EST 2018


https://github.com/python/cpython/commit/18fd89246333bfa1b76c1623df689214f3ce2bf3
commit: 18fd89246333bfa1b76c1623df689214f3ce2bf3
branch: master
author: Cheryl Sabella <cheryl.sabella at gmail.com>
committer: Ned Deily <nad at python.org>
date: 2018-03-04T18:06:57-05:00
summary:

bpo-30147: Add re.escape changes to 3.7 What's New (GH-5978)

files:
M Doc/whatsnew/3.7.rst

diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst
index 46f4f13aab47..9e65488e37d6 100644
--- a/Doc/whatsnew/3.7.rst
+++ b/Doc/whatsnew/3.7.rst
@@ -1214,6 +1214,10 @@ Changes in the Python API
 
   (Contributed by Serhiy Storchaka in :issue:`25054` and :issue:`32308`.)
 
+* Change :func:`re.escape` to only escape regex special characters instead
+  of escaping all characters other than ASCII letters, numbers, and ``'_'``.
+  (Contributed by Serhiy Storchaka in :issue:`29995`.)
+
 * :class:`tracemalloc.Traceback` frames are now sorted from oldest to most
   recent to be more consistent with :mod:`traceback`.
   (Contributed by Jesse Bakker in :issue:`32121`.)



More information about the Python-checkins mailing list