summaryrefslogtreecommitdiff
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-01-13 08:53:58 +0200
committerSerhiy Storchaka <storchaka@gmail.com>2017-01-13 08:53:58 +0200
commit2146dbe89d873bf5661fd2cb18303aa9162d48fe (patch)
treea1aafef475442f67ba710f64ba6c0249de113bdd /Misc/NEWS
parentd5b3cbf40e5d1343184e3a6d6ae5f4ec40c0e36f (diff)
downloadcpython-2146dbe89d873bf5661fd2cb18303aa9162d48fe.tar.gz
Issue #29195: Removed support of deprecated undocumented keyword arguments
in methods of regular expression objects.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 892471291e..1f05889c88 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -212,6 +212,9 @@ Core and Builtins
Library
-------
+- Issue #29195: Removed support of deprecated undocumented keyword arguments
+ in methods of regular expression objects.
+
- Issue #28969: Fixed race condition in C implementation of functools.lru_cache.
KeyError could be raised when cached function with full cache was
simultaneously called from differen threads with the same uncached arguments.