(self, *args, **kwargs)
| 143 | """ StringIO that throws an exception when it's read from """ |
| 144 | |
| 145 | def read(self, *args, **kwargs): |
| 146 | raise IOError |
| 147 | |
| 148 | def readline(self, *args, **kwargs): |
| 149 | raise IOError |
nothing calls this directly
no outgoing calls
no test coverage detected