malor / cpython-lldb

LLDB extension for debugging Python programs
MIT License
80 stars 4 forks source link

Add support for CPython 3.9 #31

Closed malor closed 4 years ago

malor commented 4 years ago

There were two things that caused the tests to fail on CPython 3.9:

1) PyFrameObject is now an opaque data type that does not expose its structure (https://bugs.python.org/issue40421)

2) co_filename is now an absolute path (https://bugs.python.org/issue20443)