summaryrefslogtreecommitdiffstats
path: root/Lib/json/tests
diff options
context:
space:
mode:
authorDoug Hellmann <doug.hellmann@gmail.com>2010-07-21 12:29:04 (GMT)
committerDoug Hellmann <doug.hellmann@gmail.com>2010-07-21 12:29:04 (GMT)
commit1c524754f67e4ba9f5e0f19e7d860d5ab2372aab (patch)
treedd00d6be393c824ba3f9da0fc0c939352b61a489 /Lib/json/tests
parent6dfbff3ff3773679251876284e437be4754e1452 (diff)
downloadcpython-1c524754f67e4ba9f5e0f19e7d860d5ab2372aab.zip
cpython-1c524754f67e4ba9f5e0f19e7d860d5ab2372aab.tar.gz
cpython-1c524754f67e4ba9f5e0f19e7d860d5ab2372aab.tar.bz2
Apply patch from Ray Allen for issue 9296
Diffstat (limited to 'Lib/json/tests')
-rw-r--r--Lib/json/tests/test_fail.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/json/tests/test_fail.py b/Lib/json/tests/test_fail.py
index 94e01e6..9768edf 100644
--- a/Lib/json/tests/test_fail.py
+++ b/Lib/json/tests/test_fail.py
@@ -74,3 +74,12 @@ class TestFail(TestCase):
pass
else:
self.fail("Expected failure for fail{0}.json: {1!r}".format(idx, doc))
+
+ def test_non_string_keys_dict(self):
+ data = {'a' : 1, (1, 2) : 2}
+
+ #This is for c encoder
+ self.assertRaises(TypeError, json.dumps, data)
+
+ #This is for python encoder
+ self.assertRaises(TypeError, json.dumps, data, indent=True)