Home | History | Annotate | Download | only in Python

Lines Matching refs:copy

40             PyMemberDef copy;
41 copy.name = l->name;
42 copy.type = l->type;
43 copy.offset = l->offset;
44 copy.flags = l->flags;
45 copy.doc = NULL;
46 return PyMember_GetOne(addr, &copy);
148 PyMemberDef copy;
149 copy.name = l->name;
150 copy.type = l->type;
151 copy.offset = l->offset;
152 copy.flags = l->flags;
153 copy.doc = NULL;
154 return PyMember_SetOne(addr, &copy, v);