summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-06-28 14:08:35 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-06-28 14:08:35 (GMT)
commiteab770404437bd49ebf897b681221784b0035795 (patch)
tree291450eb49145a982a5d30b60f31070d5eb56fdf /Misc
parent4801383c2953d3a45beafa1e945d60412460b9c3 (diff)
parent101ff3541cbe5bd9549722dc53c28d6c21b9389c (diff)
downloadcpython-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/NEWS4
1 files changed, 3 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4605ccc..3ecc73d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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().