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

Method fileno

Lib/compression/zstd/_zstdfile.py:261–264  ·  view source on GitHub ↗

Return the file descriptor for the underlying file.

(self)

Source from the content-addressed store, hash-verified

259 return self._pos
260
261 def fileno(self):
262 """Return the file descriptor for the underlying file."""
263 self._check_not_closed()
264 return self._fp.fileno()
265
266 @property
267 def name(self):

Callers 2

test_filenoMethod · 0.95
initscrFunction · 0.45

Calls 1

_check_not_closedMethod · 0.80

Tested by 1

test_filenoMethod · 0.76