(self)
| 1216 | |
| 1217 | # Return a list of items pushed in the stack after last MARK instruction. |
| 1218 | def pop_mark(self): |
| 1219 | items = self.stack |
| 1220 | self.stack = self.metastack.pop() |
| 1221 | self.append = self.stack.append |
| 1222 | return items |
| 1223 | |
| 1224 | def persistent_load(self, pid): |
| 1225 | raise UnpicklingError("unsupported persistent id encountered") |
no test coverage detected