(self, *args, **kwargs)
| 123 | """ StringIO that throws an exception when it's read from """ |
| 124 | |
| 125 | def read(self, *args, **kwargs): |
| 126 | raise IOError |
| 127 | |
| 128 | def readline(self, *args, **kwargs): |
| 129 | raise IOError |
no outgoing calls
no test coverage detected