summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorOren Milman <orenmn@gmail.com>2017-09-24 09:07:12 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-09-24 09:07:12 (GMT)
commit2b382dd6121bb1e4b75470fb3ef8555665df3eb6 (patch)
tree72d277a9137185ba934c537d22b9907f77a06e9d /Misc
parent039b25d8fd21f8d5d9e3cb536402d952cf068dc1 (diff)
downloadcpython-2b382dd6121bb1e4b75470fb3ef8555665df3eb6.zip
cpython-2b382dd6121bb1e4b75470fb3ef8555665df3eb6.tar.gz
cpython-2b382dd6121bb1e4b75470fb3ef8555665df3eb6.tar.bz2
bpo-31505: Fix an assertion failure in json, in case _json.make_encoder() received a bad encoder() argument. (#3643)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2017-09-18-12-07-39.bpo-31505.VomaFa.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-09-18-12-07-39.bpo-31505.VomaFa.rst b/Misc/NEWS.d/next/Core and Builtins/2017-09-18-12-07-39.bpo-31505.VomaFa.rst
new file mode 100644
index 0000000..bad9e51
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2017-09-18-12-07-39.bpo-31505.VomaFa.rst
@@ -0,0 +1,2 @@
+Fix an assertion failure in `json`, in case `_json.make_encoder()` received
+a bad `encoder()` argument. Patch by Oren Milman.