summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-07-16 04:48:08 (GMT)
committerGitHub <noreply@github.com>2017-07-16 04:48:08 (GMT)
commita819e5e1e66a1a5f9a7073c8a1ff3c3f304c917b (patch)
treec732b96b2ec5166746d65d0f14c6465c867a5f6e /Lib/test
parent28343e3392ca7b1ec7151f68d4d92c90efb91e50 (diff)
downloadcpython-a819e5e1e66a1a5f9a7073c8a1ff3c3f304c917b.zip
cpython-a819e5e1e66a1a5f9a7073c8a1ff3c3f304c917b.tar.gz
cpython-a819e5e1e66a1a5f9a7073c8a1ff3c3f304c917b.tar.bz2
[3.6] bpo-30936: Fix a reference leak in json when fail to sort keys. (GH-2712). (#2727)
(cherry picked from commit 49f6449ef4b81537c19b82329caaf60596c516c2)
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_json/test_speedups.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_json/test_speedups.py b/Lib/test/test_json/test_speedups.py
index 8d98ab5..56f1882 100644
--- a/Lib/test/test_json/test_speedups.py
+++ b/Lib/test/test_json/test_speedups.py
@@ -44,3 +44,7 @@ class TestEncode(CTest):
self.assertRaises(ZeroDivisionError, test, 'check_circular')
self.assertRaises(ZeroDivisionError, test, 'allow_nan')
self.assertRaises(ZeroDivisionError, test, 'sort_keys')
+
+ def test_unsortable_keys(self):
+ with self.assertRaises(TypeError):
+ self.json.encoder.JSONEncoder(sort_keys=True).encode({'a': 1, 1: 'a'})