MCPcopy Create free account
hub / github.com/numpy/numpy / JustReader

Class JustReader

numpy/lib/tests/test_io.py:2664–2672  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2662 return self.base.flush()
2663
2664class JustReader:
2665 def __init__(self, base):
2666 self.base = base
2667
2668 def read(self, n):
2669 return self.base.read(n)
2670
2671 def seek(self, off, whence=0):
2672 return self.base.seek(off, whence)
2673
2674
2675def test_ducktyping():

Callers 1

test_ducktypingFunction · 0.85

Calls

no outgoing calls

Tested by 1

test_ducktypingFunction · 0.68