()
| 59 | |
| 60 | def test_frame_getsourcelineno_myself() -> None: |
| 61 | def func() -> FrameType: |
| 62 | return sys._getframe(0) |
| 63 | |
| 64 | f = Frame(func()) |
| 65 | source, lineno = f.code.fullsource, f.lineno |
no outgoing calls
no test coverage detected
searching dependent graphs…