MCPcopy Create free account
hub / github.com/microsoft/debugpy / NoMoreMessages

Class NoMoreMessages

src/debugpy/common/messaging.py:50–57  ·  view source on GitHub ↗

Indicates that there are no more messages that can be read from or written to a stream.

Source from the content-addressed store, hash-verified

48
49
50class 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
60class JsonIOStream(object):

Callers 3

_read_lineMethod · 0.85
read_jsonMethod · 0.85
write_jsonMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…