(base,
buf,
protocol_factory=TBinaryProtocol.TBinaryProtocolFactory())
| 29 | |
| 30 | |
| 31 | def deserialize_immutable(base, |
| 32 | buf, |
| 33 | protocol_factory=TBinaryProtocol.TBinaryProtocolFactory()): |
| 34 | transport = TTransport.TMemoryBuffer(buf) |
| 35 | protocol = protocol_factory.getProtocol(transport) |
| 36 | return base.read(protocol) |
| 37 | |
| 38 | |
| 39 | def serialization_deserialization_struct_enum_test(): |
no test coverage detected