summaryrefslogtreecommitdiff
path: root/Lib/test/test_json/test_speedups.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_json/test_speedups.py')
-rw-r--r--Lib/test/test_json/test_speedups.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/test/test_json/test_speedups.py b/Lib/test/test_json/test_speedups.py
index fbfee1a582..682014cfd5 100644
--- a/Lib/test/test_json/test_speedups.py
+++ b/Lib/test/test_json/test_speedups.py
@@ -59,6 +59,15 @@ class TestEncode(CTest):
with self.assertRaises(ZeroDivisionError):
enc('spam', 4)
+ def test_bad_markers_argument_to_encoder(self):
+ # https://bugs.python.org/issue45269
+ with self.assertRaisesRegex(
+ TypeError,
+ r'make_encoder\(\) argument 1 must be dict or None, not int',
+ ):
+ self.json.encoder.c_make_encoder(1, None, None, None, ': ', ', ',
+ False, False, False)
+
def test_bad_bool_args(self):
def test(name):
self.json.encoder.JSONEncoder(**{name: BadBool()}).encode({'a': 1})