MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / read_text

Method read_text

tools/python-3.11.9-amd64/Lib/zipfile.py:2466–2469  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

2464 return pathlib.Path(self.root.filename).joinpath(self.at)
2465
2466 def read_text(self, *args, **kwargs):
2467 encoding, args, kwargs = _extract_text_encoding(*args, **kwargs)
2468 with self.open('r', encoding, *args, **kwargs) as strm:
2469 return strm.read()
2470
2471 def read_bytes(self):
2472 with self.open('rb') as strm:

Callers

nothing calls this directly

Calls 3

openMethod · 0.95
_extract_text_encodingFunction · 0.85
readMethod · 0.45

Tested by

no test coverage detected