MCPcopy Index your code
hub / github.com/RustPython/RustPython / tell

Method tell

Lib/_pyio.py:1424–1428  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1422 return pos
1423
1424 def tell(self):
1425 if self._write_buf:
1426 return BufferedWriter.tell(self)
1427 else:
1428 return BufferedReader.tell(self)
1429
1430 def truncate(self, pos=None):
1431 if pos is None:

Callers 1

truncateMethod · 0.95

Calls 1

tellMethod · 0.45

Tested by

no test coverage detected