/opt/imunify360/venv/lib/python3.11/site-packages/simplejson/tests
NameSizeModeActions
__pycache__/-0755rm
test_bigint_as_string.py22380644editdlrm
test_bitsize_int_as_string.py45350644editdlrm
test_check_circular.py15790644editdlrm
test_decimal.py25440644editdlrm
test_decode.py74700644editdlrm
test_default.py2210644editdlrm
test_dump.py176000644editdlrm
test_encode_basestring_ascii.py23370644editdlrm
test_encode_for_html.py15150644editdlrm
test_errors.py35030644editdlrm
test_fail.py64540644editdlrm
test_float.py19830644editdlrm
test_for_json.py41260644editdlrm
test_free_threading.py31690644editdlrm
test_indent.py25680644editdlrm
test_item_sort_key.py13760644editdlrm
test_iterable.py25800644editdlrm
test_namedtuple.py73910644editdlrm
test_pass1.py17460644editdlrm
test_pass2.py3860644editdlrm
test_pass3.py4820644editdlrm
test_raw_json.py10620644editdlrm
test_recursion.py16790644editdlrm
test_scanstring.py120980644editdlrm
test_separators.py9420644editdlrm
test_speedups.py125900644editdlrm
test_str_subclass.py7400644editdlrm
test_subclass.py11240644editdlrm
test_subinterpreters.py46390644editdlrm
test_tool.py29960644editdlrm
test_tuple.py18310644editdlrm
test_unicode.py70560644editdlrm
_cibw_runner.py1730644editdlrm
_helpers.py4050644editdlrm
__init__.py29170644editdlrm
Edit: /opt/imunify360/venv/lib/python3.11/site-packages/simplejson/tests/test_check_circular.py (1579B)
from unittest import TestCase import simplejson as json def default_iterable(obj): return list(obj) class TestCheckCircular(TestCase): def test_circular_dict(self): dct = {} dct['a'] = dct self.assertRaises(ValueError, json.dumps, dct) def test_circular_list(self): lst = [] lst.append(lst) self.assertRaises(ValueError, json.dumps, lst) def test_circular_composite(self): dct2 = {} dct2['a'] = [] dct2['a'].append(dct2) self.assertRaises(ValueError, json.dumps, dct2) def test_circular_default(self): json.dumps([set()], default=default_iterable) self.assertRaises(TypeError, json.dumps, [set()]) def test_circular_off_default(self): json.dumps([set()], default=default_iterable, check_circular=False) self.assertRaises(TypeError, json.dumps, [set()], check_circular=False) def test_default_callback_clears_markers(self): # Regression test: clearing the markers dict from inside the # default() callback must not cause a use-after-free on ident. markers = {} call_count = [0] class Custom: pass def bad_default(obj): call_count[0] += 1 if call_count[0] <= 1: markers.clear() return "safe" return str(obj) # Should not crash (previously: segfault from double Py_XDECREF) try: json.dumps(Custom(), default=bad_default) except (TypeError, ValueError): pass