show/hide this revision's text 2 fixed wrong answer

Try import linecache; linecache.clearcache(

What do you mean by "rerun the program in pdb?" If you've imported a module, Python won't reread it unless you explicitly ask to do so, i.e. with reload(module). UnfortunatelyHowever, reload is far from bulletproof (see xreload for another strategy).

There are plenty of pitfalls in Python really doesn't handle reloading code terribly wellreloading. To more robustly solve your problem, you could wrap pdb with a class that records your breakpoint info to a file on disk, for example, and plays them back on command.

(Sorry, ignore the first version of this answer; it's early and I didn't read your question carefully enough.)

show/hide this revision's text 1

Try import linecache; linecache.clearcache(). Unfortunately, Python really doesn't handle reloading code terribly well.