I have multiple copies of source files in my project. (The reason is that install directories are created.) When debugging, PyDev notices this and brings up a dialog asking to choose which source (.py) file. So far, so good.
The problem is that it does this each and every step, step-into, etc. This rapidly becomes annoying and interferes with the debugging process (especially the part where I'm trying to think). It seems like it could remember your choice.
The Java debugger does remember your choice, not only for the file name, but for the containing directory (so you don't have to respond every time you step into a new source file). Moreover, there are places to set the source file location, so it never has to prompt.
Thanks.