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

Method tell

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

Source from the content-addressed store, hash-verified

1441 return pos
1442
1443 def tell(self):
1444 if self._write_buf:
1445 return BufferedWriter.tell(self)
1446 else:
1447 return BufferedReader.tell(self)
1448
1449 def truncate(self, pos=None):
1450 if pos is None:

Callers 1

truncateMethod · 0.95

Calls 1

tellMethod · 0.45

Tested by

no test coverage detected