summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorINADA Naoki <methane@users.noreply.github.com>2017-03-01 11:41:03 (GMT)
committerGitHub <noreply@github.com>2017-03-01 11:41:03 (GMT)
commit3824cd8fd44f287ea2a76120a39ee76eb34bbf32 (patch)
tree3d88f703e85652986a8fb123f6196be470884f83 /Misc
parentf5184745a502a38284ce54732913a4381a45daac (diff)
downloadcpython-3824cd8fd44f287ea2a76120a39ee76eb34bbf32.zip
cpython-3824cd8fd44f287ea2a76120a39ee76eb34bbf32.tar.gz
cpython-3824cd8fd44f287ea2a76120a39ee76eb34bbf32.tar.bz2
bpo-29684: Fix regression of PyEval_CallObjectWithKeywords (GH-87)
It should raise TypeError when kwargs is not a dict.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4f19e75..6af6601 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.7.0 alpha 1?
Core and Builtins
-----------------
+- bpo-29684: Fix minor regression of PyEval_CallObjectWithKeywords.
+ It should raise TypeError when kwargs is not a dict. But it might
+ cause segv when args=NULL and kwargs is not a dict.
+
- bpo-28598: Support __rmod__ for subclasses of str being called before
str.__mod__. Patch by Martijn Pieters.