Searched refs:co_linetable (Results 1 – 10 of 10) sorted by relevance
/third_party/python/Objects/clinic/ |
D | codeobject.c.h | 163 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/ |
D | codeobject.c | 262 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/ |
D | test_code.py | 261 ("co_linetable", code2.co_linetable), 270 new_code = code = func.__code__.replace(co_linetable=b'')
|
D | test_compile.py | 663 self.assertIs(f1.__code__.co_linetable, f2.__code__.co_linetable)
|
D | test_dis.py | 175 bug42562.__code__ = bug42562.__code__.replace(co_linetable=b'\x04\x80')
|
D | test_exceptions.py | 2524 f.__code__ = f.__code__.replace(co_linetable=b'\x04\x80\xff\x80')
|
/third_party/python/Include/cpython/ |
D | code.h | 41 PyObject *co_linetable; /* string (encoding addr<->lineno mapping) See member
|
/third_party/python/Tools/gdb/ |
D | libpython.py | 651 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/ |
D | 3.10.0a6.rst | 119 Make the compiler merges same co_code and co_linetable objects in a module
|
/third_party/python/Python/ |
D | marshal.c | 527 w_object(co->co_linetable, p); in w_complex_object()
|