(self, write_context, value)
| 1371 | super().__init__(type_resolver, types.MappingProxyType) |
| 1372 | |
| 1373 | def write(self, write_context, value): |
| 1374 | write_context.write_ref(dict(value)) |
| 1375 | |
| 1376 | def read(self, read_context): |
| 1377 | return types.MappingProxyType(read_context.read_ref()) |