Get the call stack in a 'pycharm' debugger session, filtering out the 'pycharm' functions that polute the graph.
(begin_functions=[("py_line_callback",1), ("py_return_callback",1), ("do_wait_suspend",2)],
end_functions=["<module>"],
stack_index=0)
| 319 | return stack_slice(begin_functions, end_functions, stack_index) |
| 320 | |
| 321 | def stack_pycharm(begin_functions=[("py_line_callback",1), ("py_return_callback",1), ("do_wait_suspend",2)], |
| 322 | end_functions=["<module>"], |
| 323 | stack_index=0): |
| 324 | """ Get the call stack in a 'pycharm' debugger session, filtering out the 'pycharm' functions that polute the graph. """ |
| 325 | return stack_slice(begin_functions, end_functions, stack_index) |
| 326 | |
| 327 | def stack_wing(begin_functions=[("_py_line_event",1), ("_py_return_event",1)], |
| 328 | end_functions=["<module>"], |
no test coverage detected