Load bytecode from a string.
(self, string)
| 81 | f.write(marshal.dumps(self.code)) |
| 82 | |
| 83 | def bytecode_from_string(self, string): |
| 84 | """Load bytecode from a string.""" |
| 85 | self.load_bytecode(StringIO(string)) |
| 86 | |
| 87 | def bytecode_to_string(self): |
| 88 | """Return the bytecode as string.""" |
no test coverage detected