Lines Matching refs:self
160 "replace($self, /, *, co_argcount=-1, co_posonlyargcount=-1,\n"
174 code_replace_impl(PyCodeObject *self, int co_argcount,
186 code_replace(PyCodeObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
193 int co_argcount = self->co_argcount;
194 int co_posonlyargcount = self->co_posonlyargcount;
195 int co_kwonlyargcount = self->co_kwonlyargcount;
196 int co_nlocals = self->co_nlocals;
197 int co_stacksize = self->co_stacksize;
198 int co_flags = self->co_flags;
199 int co_firstlineno = self->co_firstlineno;
201 PyObject *co_consts = self->co_consts;
202 PyObject *co_names = self->co_names;
206 PyObject *co_filename = self->co_filename;
207 PyObject *co_name = self->co_name;
208 PyObject *co_qualname = self->co_qualname;
209 PyBytesObject *co_linetable = (PyBytesObject *)self->co_linetable;
210 PyBytesObject *co_exceptiontable = (PyBytesObject *)self->co_exceptiontable;
397 return_value = code_replace_impl(self, co_argcount, co_posonlyargcount, co_kwonlyargcount, co_nlocals, co_stacksize, co_flags, co_firstlineno, co_code, co_consts, co_names, co_varnames, co_freevars, co_cellvars, co_filename, co_name, co_qualname, co_linetable, co_exceptiontable);
404 "_varname_from_oparg($self, /, oparg)\n"
415 code__varname_from_oparg_impl(PyCodeObject *self, int oparg);
418 code__varname_from_oparg(PyCodeObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
434 return_value = code__varname_from_oparg_impl(self, oparg);