(self)
| 310 | ''', memo=memo) |
| 311 | |
| 312 | def test_mark_pop(self): |
| 313 | self.check_dis(b'(N00N.', '''\ |
| 314 | 0: ( MARK |
| 315 | 1: N NONE |
| 316 | 2: 0 POP |
| 317 | 3: 0 POP (MARK at 0) |
| 318 | 4: N NONE |
| 319 | 5: . STOP |
| 320 | highest protocol among opcodes = 0 |
| 321 | ''') |
| 322 | |
| 323 | def test_too_small_stack(self): |
| 324 | self.check_dis_error(b'a', '''\ |