Method: flask.json.tag.TaggedJSONSerializer.loads
Calls: 49, Exceptions: 0, Paths: 1Back
Path 1: 49 calls (1.0)
'{"test":"test"}' (6) '{"_flashes":[{" t":["message","Hello World"]},{" t":["error","Hello World"]},{" t":["warning",{" m":"Testing"}]}]}' (4...
dict (10) {'test': 'test'} (6) {'testing': 42} (3) {'data': 'foo'} (3) {'value': '42'} (2) {'_permanent': True, 'test': 42} (2) {'_permanent': True, '...
1def loads(self, value: str) -> t.Any:
2 """Load data from a JSON string and deserialized any tagged objects."""
3 return loads(value, object_hook=self.untag)