| 121 | } |
| 122 | |
| 123 | static PyObject* PyObjRecordGet(Record* base){ |
| 124 | RedisModule_Assert(base->type == pythonRecordType); |
| 125 | PythonRecord* r = (PythonRecord*)base; |
| 126 | return r->obj; |
| 127 | } |
| 128 | |
| 129 | static void PyObjRecordSet(Record* base, PyObject* obj){ |
| 130 | RedisModule_Assert(base->type == pythonRecordType); |
no outgoing calls
no test coverage detected