Home
last modified time | relevance | path

Searched refs:co_linetable (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Objects/clinic/
Dcodeobject.c.h163 PyObject *co_name, PyBytesObject *co_linetable);
188 PyBytesObject *co_linetable = (PyBytesObject *)self->co_linetable; in code_replace() local
350 co_linetable = (PyBytesObject *)args[15]; in code_replace()
352 …e, co_consts, co_names, co_varnames, co_freevars, co_cellvars, co_filename, co_name, co_linetable); in code_replace()
/third_party/python/Objects/
Dcodeobject.c262 co->co_linetable = linetable; in PyCode_NewWithPosOnlyArgs()
399 {"co_linetable", T_OBJECT, OFF(co_linetable), READONLY},
665 Py_XDECREF(co->co_linetable); in code_dealloc()
730 PyObject *co_name, PyBytesObject *co_linetable) in code_replace_impl() argument
761 co_firstlineno, (PyObject*)co_linetable); in code_replace_impl()
1271 const char *linetable = PyBytes_AS_STRING(co->co_linetable); in _PyCode_InitAddressRange()
1272 Py_ssize_t length = PyBytes_GET_SIZE(co->co_linetable); in _PyCode_InitAddressRange()
/third_party/python/Lib/test/
Dtest_code.py261 ("co_linetable", code2.co_linetable),
270 new_code = code = func.__code__.replace(co_linetable=b'')
Dtest_compile.py663 self.assertIs(f1.__code__.co_linetable, f2.__code__.co_linetable)
Dtest_dis.py175 bug42562.__code__ = bug42562.__code__.replace(co_linetable=b'\x04\x80')
Dtest_exceptions.py2524 f.__code__ = f.__code__.replace(co_linetable=b'\x04\x80\xff\x80')
/third_party/python/Include/cpython/
Dcode.h41 PyObject *co_linetable; /* string (encoding addr<->lineno mapping) See member
/third_party/python/Tools/gdb/
Dlibpython.py651 co_linetable = self.pyop_field('co_linetable').proxyval(set())
660 for addr_incr, line_incr in zip(co_linetable[::2], co_linetable[1::2]):
/third_party/python/Misc/NEWS.d/
D3.10.0a6.rst119 Make the compiler merges same co_code and co_linetable objects in a module
/third_party/python/Python/
Dmarshal.c527 w_object(co->co_linetable, p); in w_complex_object()