(value)
| 1423 | return json.dumps(value).encode('utf-8') |
| 1424 | |
| 1425 | def _decoder(value): |
| 1426 | return json.loads(value.decode('utf-8')) |
| 1427 | |
| 1428 | await conn.set_type_codec( |
| 1429 | 'json', encoder=_encoder, decoder=_decoder, |
nothing calls this directly
no outgoing calls
no test coverage detected