MCPcopy Index your code
hub / github.com/ipython/ipython / _cachable_skip

Method _cachable_skip

IPython/core/debugger.py:1134–1143  ·  view source on GitHub ↗
(self, frame)

Source from the content-addressed store, hash-verified

1132
1133 @lru_cache(1024)
1134 def _cachable_skip(self, frame):
1135 # if frame is tagged, skip by default.
1136 if DEBUGGERSKIP in frame.f_code.co_varnames:
1137 return True
1138
1139 # if one of the parent frame value set to True skip as well.
1140 if self._cached_one_parent_frame_debuggerskip(frame):
1141 return True
1142
1143 return False
1144
1145 def stop_here(self, frame):
1146 if self._is_in_decorator_internal_and_should_skip(frame) is True:

Tested by

no test coverage detected