(self, read_context)
| 1362 | buffer.write_string(value.__name__) |
| 1363 | |
| 1364 | def read(self, read_context): |
| 1365 | mod_name = read_context.read_string() |
| 1366 | return _import_validated_module(read_context.policy, mod_name, is_local=_is_local_qualname(mod_name, "")) |
| 1367 | |
| 1368 | |
| 1369 | class MappingProxySerializer(Serializer): |
nothing calls this directly
no test coverage detected