Write a string. The base implementation writes to sys.stderr; a subclass may replace this with a different implementation.
(self, data)
| 165 | self.write(''.join(lines)) |
| 166 | |
| 167 | def write(self, data): |
| 168 | """Write a string. |
| 169 | |
| 170 | The base implementation writes to sys.stderr; a subclass may |
| 171 | replace this with a different implementation. |
| 172 | |
| 173 | """ |
| 174 | sys.stderr.write(data) |
| 175 | |
| 176 | |
| 177 | class InteractiveConsole(InteractiveInterpreter): |
no outgoing calls
no test coverage detected