(self, frame)
| 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: |
no test coverage detected