I have a module bar that defines a function foo. I can use PyCharm console to call this function:
import bar
bar.foo()
Is it possible to make PyCharm debug the code during such code, i.e. stop at breakpoints?
If it matters, I am using PyCharm on Windows.