(self)
| 1675 | dispatch[GLOBAL[0]] = load_global |
| 1676 | |
| 1677 | def load_stack_global(self): |
| 1678 | name = self.stack.pop() |
| 1679 | module = self.stack.pop() |
| 1680 | if type(name) is not str or type(module) is not str: |
| 1681 | raise UnpicklingError("STACK_GLOBAL requires str") |
| 1682 | self.append(self.find_class(module, name)) |
| 1683 | dispatch[STACK_GLOBAL[0]] = load_stack_global |
| 1684 | |
| 1685 | def load_ext1(self): |
nothing calls this directly
no test coverage detected