Write a string. The base implementation writes to sys.stderr; a subclass may replace this with a different implementation.
(self, data)
| 150 | last_tb = ei = None |
| 151 | |
| 152 | def write(self, data): |
| 153 | """Write a string. |
| 154 | |
| 155 | The base implementation writes to sys.stderr; a subclass may |
| 156 | replace this with a different implementation. |
| 157 | |
| 158 | """ |
| 159 | sys.stderr.write(data) |
| 160 | |
| 161 | |
| 162 | class InteractiveConsole(InteractiveInterpreter): |
no outgoing calls
no test coverage detected