Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/python/cpython
/ readline
Method
readline
Lib/wsgiref/validate.py:202–206 ·
view source on GitHub ↗
(self, *args)
Source
from the content-addressed store, hash-verified
200
return
v
201
202
def
readline(self, *args):
203
assert_(len(args) <= 1)
204
v = self.input.readline(*args)
205
assert_(type(v) is bytes)
206
return
v
207
208
def
readlines(self, *args):
209
assert_(len(args) <= 1)
Callers
1
__iter__
Method · 0.95
Calls
1
assert_
Function · 0.85
Tested by
no test coverage detected