(self, *args, **kwargs)
| 154 | """StringIO that throws an exception when it's read from""" |
| 155 | |
| 156 | def read(self, *args, **kwargs): |
| 157 | raise OSError |
| 158 | |
| 159 | def readline(self, *args, **kwargs): |
| 160 | raise OSError |
no outgoing calls
no test coverage detected