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

Method write

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

Source from the content-addressed store, hash-verified

1352 )
1353
1354 def write(self, data: WriteBuffer) -> None:
1355 write_tag(data, ANY_TYPE)
1356 write_type_opt(data, self.source_any)
1357 write_int(data, self.type_of_any)
1358 write_str_opt(data, self.missing_import_name)
1359 write_tag(data, END_TAG)
1360
1361 @classmethod
1362 def read(cls, data: ReadBuffer) -> AnyType:

Callers

nothing calls this directly

Calls 3

write_intFunction · 0.90
write_str_optFunction · 0.90
write_type_optFunction · 0.85

Tested by

no test coverage detected