Resets the bucket (unloads the bytecode).
(self)
| 59 | self.reset() |
| 60 | |
| 61 | def reset(self) -> None: |
| 62 | """Resets the bucket (unloads the bytecode).""" |
| 63 | self.code: t.Optional[CodeType] = None |
| 64 | |
| 65 | def load_bytecode(self, f: t.BinaryIO) -> None: |
| 66 | """Loads bytecode from a file or file like object.""" |
no outgoing calls
no test coverage detected