(self)
| 286 | ''', memo=memo) |
| 287 | |
| 288 | def test_mark_pop(self): |
| 289 | self.check_dis(b'(N00N.', '''\ |
| 290 | 0: ( MARK |
| 291 | 1: N NONE |
| 292 | 2: 0 POP |
| 293 | 3: 0 POP (MARK at 0) |
| 294 | 4: N NONE |
| 295 | 5: . STOP |
| 296 | highest protocol among opcodes = 0 |
| 297 | ''') |
| 298 | |
| 299 | def test_too_small_stack(self): |
| 300 | self.check_dis_error(b'a', '''\ |