When I'm developing in Python I often want to debug a specific method, in which case it makes sense to call the method from the interactive console or debug interactive console. However, when a method is called from the interactive windows in PTVS, it doesn't stop at the break points in said method.
If it's possible, please tell me how to do it. If not, I would like to request this feature, and also to know if there is any quicker way to debug a specific method than calling it from the main script.
I'm using PTVS 2.0 RC in Visual Studio 2013 Ultimate
method a
, callmethod b
from the debug interactive window, and have the debugger stop at any breakpoints inmethod b
, and then callmethod c
from the debug interactive window inmethod b
's context. This is how the debugger works in Matlab, and I've gotten used to using these kind of "nested breakpoints" when developing. – Grano