The pdb Debugger has a nice feature:
- r(eturn) Continue execution until the current function returns.
This is handy if a method has several return statements.
With this feature you can see where the method would get left, but you still see which return statement gets used.
The pdb Debugger stops at a code line like this:
return foo
I could not find this feature in PyCharm.
Is it available, or it this a feature request?