(self, *args, **kwargs)
| 442 | """ StringIO that throws an exception when it's read from """ |
| 443 | |
| 444 | def read(self, *args, **kwargs): |
| 445 | raise IOError |
| 446 | |
| 447 | def readline(self, *args, **kwargs): |
| 448 | raise IOError |
no outgoing calls
no test coverage detected