Load bytecode from a string.
(self, string)
| 104 | marshal_dump(self.code, f) |
| 105 | |
| 106 | def bytecode_from_string(self, string): |
| 107 | """Load bytecode from a string.""" |
| 108 | self.load_bytecode(BytesIO(string)) |
| 109 | |
| 110 | def bytecode_to_string(self): |
| 111 | """Return the bytecode as string.""" |
no test coverage detected