MCPcopy Index your code
hub / github.com/python/mypy / AckMessage

Class AckMessage

mypy/build.py:5177–5185  ·  view source on GitHub ↗

An empty message used primarily for synchronization.

Source from the content-addressed store, hash-verified

5175
5176
5177class AckMessage(IPCMessage):
5178 """An empty message used primarily for synchronization."""
5179
5180 @classmethod
5181 def read(cls, buf: ReadBuffer) -> AckMessage:
5182 return AckMessage()
5183
5184 def write(self, buf: WriteBuffer) -> None:
5185 write_tag(buf, ACK_MESSAGE)
5186
5187
5188class SccRequestMessage(IPCMessage):

Callers 2

serveFunction · 0.90
readMethod · 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…