(
tb: types.TracebackType | None, frame: types.FrameType, lineno: int
)
| 128 | # the locals of `append_traceback`. See the diagram in `_with_append_backtrace` |
| 129 | # and PR #327 for more details. |
| 130 | def create( |
| 131 | tb: types.TracebackType | None, frame: types.FrameType, lineno: int |
| 132 | ) -> types.TracebackType: |
| 133 | return types.TracebackType(tb, frame, frame.f_lasti, lineno) |
| 134 | |
| 135 | return create(tb, self._create_frame(filename, lineno, func), lineno) |
| 136 |
no outgoing calls
no test coverage detected