Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I launched a python program with many nested loops, and the program will take days. I just realized that one of the loops values is wrong and makes a infinite loop.

I don't want to restart the program from zero, is there a way to interrupt the current program and modify the loop range so it will work properly and also if it was trapped with the infinite loop to break it?

Many thanks for your help.

share|improve this question
2  
See here for some hints. – thg435 Jun 25 '12 at 9:39

3 Answers

If the program saves its state or its results from time to time, you could add a logic which skips the steps which have already executed.

Otherwise, I don't see a way to change this.

share|improve this answer

Check out this article: https://stripe.com/blog/exploring-python-using-gdb

share|improve this answer
Hi, thanks for the link. But using GBD mean to restart my program again. It's already running from 4 days, but soon it will hit (or may be it's already there) the infinite loop. I want to intercept the currently running program. – user1479498 Jun 25 '12 at 13:38
@user1479498 It's possible to attach gdb to running process. – plaes Jun 25 '12 at 21:29

I guess pretty old article but just came across now. In case you still want to try you could do the following:

Make your script run under pdb as: python -m pdb

This will run it under pdb. After entering pdb just enter command 'c' (continue). This will begin your program.

When you encounter a infinite loop just do a ctrl+c this will stop the program within the debugger. Now you could run any python statements you want. Possibly you could also define a new script import it and run functions from that script or exit.

I know it is not a good idea to always run under debugger, but at least the above would solve what you intended for.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.