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

Method write

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

Source from the content-addressed store, hash-verified

1511 return DeletedType(data["source"])
1512
1513 def write(self, data: WriteBuffer) -> None:
1514 write_tag(data, DELETED_TYPE)
1515 write_str_opt(data, self.source)
1516 write_tag(data, END_TAG)
1517
1518 @classmethod
1519 def read(cls, data: ReadBuffer) -> DeletedType:

Callers

nothing calls this directly

Calls 1

write_str_optFunction · 0.90

Tested by

no test coverage detected