[Python-Dev] Re: Mixed Python/C debugging

2023-04-26 Thread Wes Turner
"Debugging a Mixed Python and C Language Stack" (2023) https://developer.nvidia.com/blog/debugging-mixed-python-and-c-language-stack/ https://news.ycombinator.com/item?id=35706687 On Mon, Dec 2, 2019, 10:59 AM Skip Montanaro wrote: > Thanks for the responses. I know there are multiple tools out

[Python-Dev] Re: Mixed Python/C debugging

2019-12-02 Thread Skip Montanaro
Thanks for the responses. I know there are multiple tools out there (to wit, Wes's response), but I'm really after what people actually use and find works. I apologize that wasn't clear. I did neglect to mention that my environment is Linux (specifically Ubuntu 18.04), so Windows-based solutions ar

[Python-Dev] Re: Mixed Python/C debugging

2019-12-02 Thread Sasha Kacanski
Same here, I do Pycharm and it is possible to add clion plugin and go through C code ... On Mon, Dec 2, 2019 at 8:34 AM Fabio Zadrozny wrote: > Hi Skip, > > I just wanted to note that what I usually do in this case is having 2 > debuggers attached. > > i.e.: start one any way you want and then d

[Python-Dev] Re: Mixed Python/C debugging

2019-12-02 Thread Fabio Zadrozny
Hi Skip, I just wanted to note that what I usually do in this case is having 2 debuggers attached. i.e.: start one any way you want and then do an attach to from the other debugger -- in my case as I'm usually on the Python side I usually start the Python debugger and then do an attach to from t

[Python-Dev] Re: Mixed Python/C debugging

2019-12-01 Thread Wes Turner
Your question is specifically about IDEs with support for mixed-mode debugging (with gdb), so I went looking for an answer: https://wiki.python.org/moin/DebuggingWithGdb (which is not responsive and almost unreadable on a mobile device) links to https://fedoraproject.org/wiki/Features/EasierPython

[Python-Dev] Re: Mixed Python/C debugging

2019-12-01 Thread Dino Viehland
Python Tools for Visual Studio has supported mixed mode debugging for a while... I'm not sure if that support would have ever ended up in VS Code Python extension so it might be a windows only solution which might not help you much. On Sun, Dec 1, 2019, 9:04 AM Skip Montanaro wrote: > Having tri