MCPcopy Create free account
hub / github.com/Pylons/webtest / read

Method read

webtest/lint.py:214–218  ·  view source on GitHub ↗
(self, *args)

Source from the content-addressed store, hash-verified

212 self.input = wsgi_input
213
214 def read(self, *args):
215 assert len(args) <= 1
216 v = self.input.read(*args)
217 assert type(v) is bytes
218 return v
219
220 def readline(self, *args):
221 v = self.input.readline(*args)

Calls

no outgoing calls