(self)
| 10 | |
| 11 | class Interpreter(interpreter.Interp): |
| 12 | def __init__(self): |
| 13 | super().__init__() |
| 14 | self.a = [] |
| 15 | self.write = self.a.append |
| 16 | |
| 17 | |
| 18 | class TestInterpreter(unittest.TestCase): |
nothing calls this directly
no outgoing calls
no test coverage detected