(self)
| 1329 | |
| 1330 | # Return a list of items pushed in the stack after last MARK instruction. |
| 1331 | def pop_mark(self): |
| 1332 | items = self.stack |
| 1333 | self.stack = self.metastack.pop() |
| 1334 | self.append = self.stack.append |
| 1335 | return items |
| 1336 | |
| 1337 | def persistent_load(self, pid): |
| 1338 | raise UnpicklingError("unsupported persistent id encountered") |
no test coverage detected