(self)
| 1355 | |
| 1356 | # Return a list of items pushed in the stack after last MARK instruction. |
| 1357 | def pop_mark(self): |
| 1358 | items = self.stack |
| 1359 | self.stack = self.metastack.pop() |
| 1360 | self.append = self.stack.append |
| 1361 | return items |
| 1362 | |
| 1363 | def persistent_load(self, pid): |
| 1364 | raise UnpicklingError("unsupported persistent id encountered") |
no test coverage detected