(self)
| 2013 | |
| 2014 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 2015 | def test_nested(self): |
| 2016 | with captured_stdout(): |
| 2017 | f = outer() |
| 2018 | actual = dis.get_instructions(f, first_line=expected_f_line) |
| 2019 | self.assertInstructionsEqual(list(actual), expected_opinfo_f) |
| 2020 | |
| 2021 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 2022 | def test_doubly_nested(self): |
nothing calls this directly
no test coverage detected