Write a string. The base implementation writes to sys.stderr; a subclass may replace this with a different implementation.
(self, data)
| 392 | last_tb = ei = None |
| 393 | |
| 394 | def write(self, data): |
| 395 | """Write a string. |
| 396 | |
| 397 | The base implementation writes to sys.stderr; a subclass may |
| 398 | replace this with a different implementation. |
| 399 | |
| 400 | """ |
| 401 | sys.stderr.write(data) |
| 402 | |
| 403 | |
| 404 | class InteractiveConsole(InteractiveInterpreter): |
no outgoing calls
no test coverage detected