MCPcopy Index your code
hub / github.com/numpy/numpy / get_remaining_size

Function get_remaining_size

numpy/_core/records.py:828–834  ·  view source on GitHub ↗
(fd)

Source from the content-addressed store, hash-verified

826 return _array
827
828def get_remaining_size(fd):
829 pos = fd.tell()
830 try:
831 fd.seek(0, 2)
832 return fd.tell() - pos
833 finally:
834 fd.seek(pos, 0)
835
836
837@set_module("numpy.rec")

Callers 1

fromfileFunction · 0.85

Calls 1

seekMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…