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

Method read

Lib/wsgiref/validate.py:196–200  ·  view source on GitHub ↗
(self, *args)

Source from the content-addressed store, hash-verified

194 self.input = wsgi_input
195
196 def read(self, *args):
197 assert_(len(args) == 1)
198 v = self.input.read(*args)
199 assert_(type(v) is bytes)
200 return v
201
202 def readline(self, *args):
203 assert_(len(args) <= 1)

Callers

nothing calls this directly

Calls 1

assert_Function · 0.85

Tested by

no test coverage detected