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

Method write

mypy/types.py:1242–1245  ·  view source on GitHub ↗
(self, data: WriteBuffer)

Source from the content-addressed store, hash-verified

1240 return {".class": "UnpackType", "type": self.type.serialize()}
1241
1242 def write(self, data: WriteBuffer) -> None:
1243 write_tag(data, UNPACK_TYPE)
1244 self.type.write(data)
1245 write_tag(data, END_TAG)
1246
1247 @classmethod
1248 def read(cls, data: ReadBuffer) -> UnpackType:

Callers

nothing calls this directly

Calls 1

writeMethod · 0.45

Tested by

no test coverage detected