Return the bytecode as string.
(self)
| 85 | self.load_bytecode(StringIO(string)) |
| 86 | |
| 87 | def bytecode_to_string(self): |
| 88 | """Return the bytecode as string.""" |
| 89 | out = StringIO() |
| 90 | self.write_bytecode(out) |
| 91 | return out.getvalue() |
| 92 | |
| 93 | |
| 94 | class BytecodeCache(object): |
no test coverage detected