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

Method write

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

Source from the content-addressed store, hash-verified

448 return alias
449
450 def write(self, data: WriteBuffer) -> None:
451 write_tag(data, TYPE_ALIAS_TYPE)
452 write_type_list(data, self.args)
453 assert self.alias is not None
454 write_str(data, self.alias.fullname)
455 write_tag(data, END_TAG)
456
457 @classmethod
458 def read(cls, data: ReadBuffer) -> TypeAliasType:

Callers

nothing calls this directly

Calls 2

write_strFunction · 0.90
write_type_listFunction · 0.85

Tested by

no test coverage detected