summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-12-08 15:40:51 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-12-08 15:40:51 (GMT)
commit187177fc558e2dce1f55ad8bdf7344c61aec6594 (patch)
tree1dcae5a95f199abca9ff349d6bc9d47fd51e853f /Misc
parent4b7f9439c0a61ce597675f27adca2465a9c1e76b (diff)
downloadcpython-187177fc558e2dce1f55ad8bdf7344c61aec6594.zip
cpython-187177fc558e2dce1f55ad8bdf7344c61aec6594.tar.gz
cpython-187177fc558e2dce1f55ad8bdf7344c61aec6594.tar.bz2
Issue #6986: Fix crash in the JSON C accelerator when called with the
wrong parameter types. Patch by Victor Stinner.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6cc264b..95fae08 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -509,6 +509,9 @@ Core and Builtins
Library
-------
+- Issue #6986: Fix crash in the JSON C accelerator when called with the
+ wrong parameter types. Patch by Victor Stinner.
+
- logging: Added optional `secure` parameter to SMTPHandler, to enable use of
TLS with authentication credentials.