summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2016-05-08 20:36:44 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2016-05-08 20:36:44 (GMT)
commitce41287e996351735ec1564bc1d701dd9057bdcf (patch)
tree6c405d106d2c5aa2f349ff70f9058af7680063c4 /Misc/NEWS
parenta26e4b97d82f408b18ea0ba7cf8b61606f80f1a8 (diff)
downloadcpython-ce41287e996351735ec1564bc1d701dd9057bdcf.zip
cpython-ce41287e996351735ec1564bc1d701dd9057bdcf.tar.gz
cpython-ce41287e996351735ec1564bc1d701dd9057bdcf.tar.bz2
Issue #18531: Single var-keyword argument of dict subtype was passed
unscathed to the C-defined function. Now it is converted to exact dict.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 727f84e..63cdce2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Release date: tba
Core and Builtins
-----------------
+- Issue #18531: Single var-keyword argument of dict subtype was passed
+ unscathed to the C-defined function. Now it is converted to exact dict.
+
- Issue #26811: gc.get_objects() no longer contains a broken tuple with NULL
pointer.