Searched refs:co_qualname (Results 1 - 9 of 9) sorted by relevance
/third_party/python/Objects/clinic/ |
H A D | codeobject.c.h | 165 " co_qualname=None, co_linetable=None, co_exceptiontable=None)\n" 181 PyObject *co_name, PyObject *co_qualname, 189 static const char * const _keywords[] = {"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", NULL}; in code_replace() 208 PyObject *co_qualname = self->co_qualname; in code_replace() local 370 _PyArg_BadArgument("replace", "argument 'co_qualname'", "str", args[15]); in code_replace() 376 co_qualname = args[15]; in code_replace() 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); in code_replace()
|
/third_party/python/Lib/test/ |
H A D | test_code.py | 236 co.co_qualname, 245 CodeTest.test_qualname.__code__.co_qualname, 313 co.co_qualname,
|
/third_party/python/Include/cpython/ |
H A D | code.h | 89 PyObject *co_qualname; /* unicode (qualname, for reference) */ \
|
/third_party/python/Tools/scripts/ |
H A D | deepfreeze.py | 246 co_qualname = self.generate(name + "_qualname", code.co_qualname) 285 self.write(f".co_qualname = {co_qualname},")
|
H A D | umarshal.py | 289 retval.co_qualname = self.r_object()
|
/third_party/python/Objects/ |
H A D | codeobject.c | 301 co->co_qualname = con->qualname; in init_code() 1631 Py_XDECREF(co->co_qualname); in code_dealloc() 1800 {"co_qualname", T_OBJECT, OFF(co_qualname), READONLY}, 1896 co_qualname: unicode(c_default="self->co_qualname") = None 1911 PyObject *co_name, PyObject *co_qualname, in code_replace_impl() 1979 co_qualname, co_firstlineno, in code_replace_impl() 1904 code_replace_impl(PyCodeObject *self, int co_argcount, int co_posonlyargcount, int co_kwonlyargcount, int co_nlocals, int co_stacksize, int co_flags, int co_firstlineno, PyBytesObject *co_code, PyObject *co_consts, PyObject *co_names, PyObject *co_varnames, PyObject *co_freevars, PyObject *co_cellvars, PyObject *co_filename, PyObject *co_name, PyObject *co_qualname, PyBytesObject *co_linetable, PyBytesObject *co_exceptiontable) code_replace_impl() argument
|
H A D | funcobject.c | 65 qualname = code_obj->co_qualname; in PyFunction_NewWithQualName()
|
H A D | genobject.c | 996 gen->gi_qualname = gen->gi_code->co_qualname; in gen_new_with_qualname()
|
/third_party/python/Python/ |
H A D | marshal.c | 571 w_object(co->co_qualname, p); in w_complex_object()
|
Completed in 13 milliseconds