| 127 | } |
| 128 | |
| 129 | static void PyObjRecordSet(Record* base, PyObject* obj){ |
| 130 | RedisModule_Assert(base->type == pythonRecordType); |
| 131 | PythonRecord* r = (PythonRecord*)base; |
| 132 | r->obj = obj; |
| 133 | } |
| 134 | |
| 135 | |
| 136 | /* |
no outgoing calls
no test coverage detected