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

Method tell

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

Source from the content-addressed store, hash-verified

992 return self._pos
993
994 def tell(self):
995 if self.closed:
996 raise ValueError("tell on closed file")
997 return self._pos
998
999 def truncate(self, pos=None):
1000 if self.closed:

Callers 8

decompressFunction · 0.95
_safe_readMethod · 0.95
_testNonRegularFileMethod · 0.95
test_zstdfile_flushMethod · 0.95

Calls

no outgoing calls

Tested by 6

_testNonRegularFileMethod · 0.76
test_zstdfile_flushMethod · 0.76