summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-01-13 06:53:58 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-01-13 06:53:58 (GMT)
commitb37f3f6e6b17b32b9af4a5fcafc650580c94b2c9 (patch)
tree47b04ab83e2c2ea841e7168fbd29db2f0f86a03e /Misc
parent8cbc51ab3d9be00ddc296513d6f39b06b2d6b1a1 (diff)
downloadcpython-b37f3f6e6b17b32b9af4a5fcafc650580c94b2c9.zip
cpython-b37f3f6e6b17b32b9af4a5fcafc650580c94b2c9.tar.gz
cpython-b37f3f6e6b17b32b9af4a5fcafc650580c94b2c9.tar.bz2
Issue #29195: Removed support of deprecated undocumented keyword arguments
in methods of regular expression objects.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 8924712..1f05889 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.