(self, write_context, value)
| 165 | |
| 166 | class MyExtSerializer(pyfory.serializer.Serializer): |
| 167 | def write(self, write_context, value): |
| 168 | write_context.write_varint32(value.id) |
| 169 | |
| 170 | def read(self, read_context): |
| 171 | obj = MyExt() |
nothing calls this directly
no test coverage detected