I'm trying to help debug a python script that is causing python (2.7) itself to crashes.
- The script logs some info to a file and it ends at a different stop on each run, or at least what it writes out is at a different spot.
- The script already have a try\catch's.
- The script has worked previously without errors
- This is on Window 2008 servers, with a fair bit of RAM and when run not much CPU usage.
So my question:
- Are there tools or techniques that could help?
- I see that there is a pdb module I could import but not sure if that would help this issue.
- When a py script crashes python itself how would you debug that?
GB