diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-28 14:08:35 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-28 14:08:35 (GMT) |
commit | eab770404437bd49ebf897b681221784b0035795 (patch) | |
tree | 291450eb49145a982a5d30b60f31070d5eb56fdf /Misc | |
parent | 4801383c2953d3a45beafa1e945d60412460b9c3 (diff) | |
parent | 101ff3541cbe5bd9549722dc53c28d6c21b9389c (diff) | |
download | cpython-eab770404437bd49ebf897b681221784b0035795.zip cpython-eab770404437bd49ebf897b681221784b0035795.tar.gz cpython-eab770404437bd49ebf897b681221784b0035795.tar.bz2 |
Issue #24336: The contextmanager decorator now works with functions with
keyword arguments called "func" and "self". Patch by Martin Panter.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -22,10 +22,12 @@ Core and Builtins coroutines only; add new opcode: GET_YIELD_FROM_ITER; fix generators wrapper used in types.coroutine to be instance of collections.abc.Generator. - Library ------- +- Issue #24336: The contextmanager decorator now works with functions with + keyword arguments called "func" and "self". Patch by Martin Panter. + - Issue #24522: Fix possible integer overflow in json accelerator module. - Issue #24489: ensure a previously set C errno doesn't disturb cmath.polar(). |