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

Method write

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

Source from the content-addressed store, hash-verified

2843 )
2844
2845 def write(self, data: WriteBuffer) -> None:
2846 write_tag(data, TUPLE_TYPE)
2847 self.partial_fallback.write(data)
2848 write_type_list(data, self.items)
2849 write_bool(data, self.implicit)
2850 write_tag(data, END_TAG)
2851
2852 @classmethod
2853 def read(cls, data: ReadBuffer) -> TupleType:

Callers

nothing calls this directly

Calls 2

write_type_listFunction · 0.85
writeMethod · 0.45

Tested by

no test coverage detected