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

Method tell

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

Source from the content-addressed store, hash-verified

975 return self._pos
976
977 def tell(self):
978 if self.closed:
979 raise ValueError("tell on closed file")
980 return self._pos
981
982 def truncate(self, pos=None):
983 if self.closed:

Callers 9

decompressFunction · 0.95
_safe_readMethod · 0.95
_testNonRegularFileMethod · 0.95
test_zstdfile_flushMethod · 0.95
test_01Function · 0.95
test_04Function · 0.95

Calls

no outgoing calls

Tested by 7

_testNonRegularFileMethod · 0.76
test_zstdfile_flushMethod · 0.76
test_01Function · 0.76
test_04Function · 0.76