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

Method write

mypy/cache.py:279–283  ·  view source on GitHub ↗
(self, data: WriteBuffer)

Source from the content-addressed store, hash-verified

277 return None
278
279 def write(self, data: WriteBuffer) -> None:
280 write_str_list(data, self.dependencies)
281 write_str_list(data, self.suppressed)
282 write_bytes_list(data, self.dep_hashes)
283 write_errors(data, self.error_lines)
284
285 @classmethod
286 def read(cls, data: ReadBuffer) -> CacheMetaEx | None:

Callers

nothing calls this directly

Calls 3

write_str_listFunction · 0.85
write_bytes_listFunction · 0.85
write_errorsFunction · 0.85

Tested by

no test coverage detected