[Python-Dev] Re: Advice / RTFM needed for tool setup to participate in python development from a Windows host

2020-12-16 Thread pjfarley3
Thank you Emily! That may allow me to do what I need to do to find the error(s) lurking there. No multi-processing is involved in my current project, so it should be more straightforward to accomplish the debugging I need to do. Peter From: Emily Bowman Sent: Wednesday, December

[Python-Dev] Re: Advice / RTFM needed for tool setup to participate in python development from a Windows host

2020-12-16 Thread Emily Bowman
Even if Python itself is the standard distribution, you should be able to debug your outside DLL module in VS just by putting a breakpoint on your favorite line and setting "/path/to/python.exe -m yourmodule" as the command path under debugging in your project properties, or whatever commandline

[Python-Dev] Re: Advice / RTFM needed for tool setup to participate in python development from a Windows host

2020-12-16 Thread pjfarley3
Yes, that is my specific issue. I have a C DLL invoked by a python wrapper module using ctypes that has at least one issue (and likely more than one) so I need to be able to start a python test script and debug the lower-level DLL code. The C test programs for the lower-level C DLL all seen

[Python-Dev] Re: Advice / RTFM needed for tool setup to participate in python development from a Windows host

2020-12-16 Thread MRAB
On 2020-12-16 19:19, Paul Moore wrote: Personally, I just have Visual Studio and VS Code as my text editor. I rarely use Visual Studio directly, though, I mostly use the `build.bat` and similar scripts in the `PCBuild` directory. Having said that, I'm not doing anything like debugging problems

[Python-Dev] Re: Advice / RTFM needed for tool setup to participate in python development from a Windows host

2020-12-16 Thread Paul Moore
Personally, I just have Visual Studio and VS Code as my text editor. I rarely use Visual Studio directly, though, I mostly use the `build.bat` and similar scripts in the `PCBuild` directory. Having said that, I'm not doing anything like debugging problems with DLLs, for which I imagine a decent C

[Python-Dev] Advice / RTFM needed for tool setup to participate in python development from a Windows host

2020-12-16 Thread pjfarley3
Hello, I hope this is the correct place to ask this question. I have a desire to participate in python development in a particular area from my Windows host machine, but I am not finding any concise listing of the tool setup needed to fully participate, nor any detailed guidance on how to