Method: flask.json.tag.TaggedJSONSerializer.dumps
Calls: 506, Exceptions: 0, Paths: 1Back
Path 1: 506 calls (1.0)
{} (452) dict (10) {'testing': 42} (7) {'_permanent': True, 'foo': 3} (3) {'test': 'test'} (3) {'value': '42'} (2) {'foo': 42} (2) {'foo': 1, '_perman...
'{}' (452) '{"testing":42}' (7) '{"_flashes":[{" t":["message","Hello World"]},{" t":["error","Hello World"]},{" t":["warning",{" m":"Testing...
1def dumps(self, value: t.Any) -> str:
2 """Tag the value and dump it to a compact JSON string."""
3 return dumps(self.tag(value), separators=(",", ":"))