MCPcopy Index your code
hub / github.com/python/cpython / read

Method read

Lib/tarfile.py:321–322  ·  view source on GitHub ↗
(self, size)

Source from the content-addressed store, hash-verified

319 os.close(self.fd)
320
321 def read(self, size):
322 return os.read(self.fd, size)
323
324 def write(self, s):
325 os.write(self.fd, s)

Callers

nothing calls this directly

Calls 1

readMethod · 0.45

Tested by

no test coverage detected