| 115 | } |
| 116 | |
| 117 | static Record* PyObjRecordCreate(){ |
| 118 | PythonRecord* ret = (PythonRecord*)RedisGears_RecordCreate(pythonRecordType); |
| 119 | ret->obj = NULL; |
| 120 | return &ret->base; |
| 121 | } |
| 122 | |
| 123 | static PyObject* PyObjRecordGet(Record* base){ |
| 124 | RedisModule_Assert(base->type == pythonRecordType); |
no outgoing calls
no test coverage detected