Home | History | Annotate | Download | only in Objects

Lines Matching refs:func_code

21         op->func_code = code;

70 return ((PyFunctionObject *) op) -> func_code;
231 Py_INCREF(op->func_code);
232 return op->func_code;
243 /* Not legal to del f.func_code or to set it to anything
261 tmp = op->func_code;
263 op->func_code = value;
333 {"func_code", (getter)func_get_code, (setter)func_set_code},
454 Py_DECREF(op->func_code);
476 Py_VISIT(f->func_code);