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

Class JustReader

numpy/lib/tests/test_io.py:2597–2605  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2595 return self.base.flush()
2596
2597class JustReader:
2598 def __init__(self, base):
2599 self.base = base
2600
2601 def read(self, n):
2602 return self.base.read(n)
2603
2604 def seek(self, off, whence=0):
2605 return self.base.seek(off, whence)
2606
2607
2608def test_ducktyping():

Callers 1

test_ducktypingFunction · 0.85

Calls

no outgoing calls

Tested by 1

test_ducktypingFunction · 0.68

Used in the wild real call sites across dependent graphs

searching dependent graphs…