MCPcopy Create free account
hub / github.com/RedisGears/RedisGears / PyObjRecordCreate

Function PyObjRecordCreate

plugins/python/redisgears_python.c:117–121  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Calls

no outgoing calls

Tested by

no test coverage detected