| 7007 | } |
| 7008 | |
| 7009 | static Record* PythonRecord_Deserialize(ExecutionCtx* ectx, Gears_BufferReader* br){ |
| 7010 | Record* r = PyObjRecordCreate(); |
| 7011 | PyObject* obj = RedisGearsPy_PyObjectDeserialize(br); |
| 7012 | PyObjRecordSet(r, obj); |
| 7013 | return r; |
| 7014 | } |
| 7015 | |
| 7016 | #define REDISGEARSPY_REQ_DATATYPE_NAME "GEAR_REQ0" |
| 7017 | #define REDISGEARSPY_REQ_DATATYPE_VERSION 1 |
nothing calls this directly
no test coverage detected