Indicates that there are no more messages that can be read from or written to a stream.
| 48 | |
| 49 | |
| 50 | class NoMoreMessages(JsonIOError, EOFError): |
| 51 | """Indicates that there are no more messages that can be read from or written |
| 52 | to a stream. |
| 53 | """ |
| 54 | |
| 55 | def __init__(self, *args, **kwargs): |
| 56 | args = args if len(args) else ["No more messages"] |
| 57 | super().__init__(*args, **kwargs) |
| 58 | |
| 59 | |
| 60 | class JsonIOStream(object): |
no outgoing calls
no test coverage detected
searching dependent graphs…