(self, *args, **kwargs)
| 217 | """StringIO that throws an exception when it's read from.""" |
| 218 | |
| 219 | def read(self, *args, **kwargs): |
| 220 | raise IOError |
| 221 | |
| 222 | def readline(self, *args, **kwargs): |
| 223 | raise IOError |
no outgoing calls
no test coverage detected