Signal whether the frame is an internal CPython implementation detail.
(frame)
| 447 | |
| 448 | |
| 449 | def _is_internal_frame(frame): |
| 450 | """Signal whether the frame is an internal CPython implementation detail.""" |
| 451 | return _is_internal_filename(frame.f_code.co_filename) |
| 452 | |
| 453 | |
| 454 | def _next_external_frame(frame, skip_file_prefixes): |
no test coverage detected
searching dependent graphs…