(self)
| 197 | ''', indentlevel=2) |
| 198 | |
| 199 | def test_mark_without_pos(self): |
| 200 | self.check_dis(SimpleReader(b'(N(tl.'), '''\ |
| 201 | ( MARK |
| 202 | N NONE |
| 203 | ( MARK |
| 204 | t TUPLE (MARK at unknown opcode offset) |
| 205 | l LIST (MARK at unknown opcode offset) |
| 206 | . STOP |
| 207 | highest protocol among opcodes = 0 |
| 208 | ''') |
| 209 | |
| 210 | def test_no_mark(self): |
| 211 | self.check_dis_error(b'Nt.', '''\ |
nothing calls this directly
no test coverage detected