I am able to use Clion to build a C extension for Python, and use pip install -e to rebuild and install the extension. I have confirmed that the extension is built unstripped with all the debug information.
I can get CLion to run a specific test case from my Python test suite in the debugger - stepping through the Python code line by line, but this debugger wont allow me to step into the C extension; and wont stop at a break point that is set in C source.
How do I connect from the Python debugger to the C debugger ?

