(self, *args, **kwargs)
| 624 | """ StringIO that throws an exception when it's read from """ |
| 625 | |
| 626 | def read(self, *args, **kwargs): |
| 627 | raise IOError |
| 628 | |
| 629 | def readline(self, *args, **kwargs): |
| 630 | raise IOError |
no outgoing calls
no test coverage detected