Debugger on windows doesn't stop on breakpoints
Hello,
I have Windows 8 OS and PyCharm with versions 3.4 and 4. In both of them I have the problem with breakpoints. For example, I have project with one file main.py:
def test():
print "OLALA"
if __name__ == "__main__":
test()
Run configuration is here: http://joxi.ru/GrqMBWgFN360rz
When I just run project everything is good. But when I set breakpoint at any line(for example, call of test function), and run debugger, it doesn't stop and I don't know why.
I have Windows 8 OS and PyCharm with versions 3.4 and 4. In both of them I have the problem with breakpoints. For example, I have project with one file main.py:
def test():
print "OLALA"
if __name__ == "__main__":
test()
Run configuration is here: http://joxi.ru/GrqMBWgFN360rz
When I just run project everything is good. But when I set breakpoint at any line(for example, call of test function), and run debugger, it doesn't stop and I don't know why.
1 comment
Sort by
Date
Votes
However, if program throws an exception, debbuger stops at the throw line.
Please sign in to leave a comment.