(output)
| 2125 | @jump_test(2, 3, [1], event='call', error=(ValueError, "can't jump from" |
| 2126 | " the 'call' trace event of a new frame")) |
| 2127 | def test_no_jump_from_call(output): |
| 2128 | output.append(1) |
| 2129 | def nested(): |
| 2130 | output.append(3) |
| 2131 | nested() |
| 2132 | output.append(5) |
| 2133 | |
| 2134 | # TODO: RUSTPYTHON |
| 2135 | @unittest.expectedFailure |