diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2017-01-13 08:53:58 +0200 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-01-13 08:53:58 +0200 |
commit | 2146dbe89d873bf5661fd2cb18303aa9162d48fe (patch) | |
tree | a1aafef475442f67ba710f64ba6c0249de113bdd /Misc/NEWS | |
parent | d5b3cbf40e5d1343184e3a6d6ae5f4ec40c0e36f (diff) | |
download | cpython-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/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. |