Resets the bucket (unloads the bytecode).
(self)
| 73 | self.reset() |
| 74 | |
| 75 | def reset(self): |
| 76 | """Resets the bucket (unloads the bytecode).""" |
| 77 | self.code = None |
| 78 | |
| 79 | def load_bytecode(self, f): |
| 80 | """Loads bytecode from a file or file like object.""" |
no outgoing calls
no test coverage detected