Try 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 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.)import linecache; linecache.clearcache(reload(module). UnfortunatelyHowever, reload is far from bulletproof (see xreload for another strategy).
|
2 | fixed wrong answer | ||
|
|
||||
|
1 |
|
||
|
Try |
||||
