|
Hello,
I have a Python project which has various statements like this:
try:
import readline
except:
pass
When debugging with Python Tools for VS, the debugger breaks at that import line because "No module named readline."
If I continue, program execution proceeds fine, but every time that "import readline" call throws an error, the debugger breaks. It is quite frustrating.
This problem is isolated to one Python project. I don't experience this behavior in other projects.
Has anyone experienced this? Does anyone know what I can do to fix this?
Thanks!
|