diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-01-13 06:53:58 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-01-13 06:53:58 (GMT) |
commit | b37f3f6e6b17b32b9af4a5fcafc650580c94b2c9 (patch) | |
tree | 47b04ab83e2c2ea841e7168fbd29db2f0f86a03e /Misc | |
parent | 8cbc51ab3d9be00ddc296513d6f39b06b2d6b1a1 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |