Home | History | Annotate | Download | only in Objects

Lines Matching refs:func_code

21         op->func_code = code;
70 return ((PyFunctionObject *) op) -> func_code;
229 Py_INCREF(op->func_code);
230 return op->func_code;
241 /* Not legal to del f.func_code or to set it to anything
259 tmp = op->func_code;
261 op->func_code = value;
331 {"func_code", (getter)func_get_code, (setter)func_set_code},
451 Py_DECREF(op->func_code);
473 Py_VISIT(f->func_code);