Whitespace normalization.
This commit is contained in:
parent
ec8c5a9311
commit
9ca3f8551a
|
@ -29,6 +29,3 @@ def test_main():
|
|||
|
||||
if __name__ == "__main__":
|
||||
test_main()
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1003,13 +1003,13 @@ class AbstractHTTPHandler(BaseHandler):
|
|||
# for Windows. That adapter calls recv(), so delegate recv()
|
||||
# to read(). This weird wrapping allows the returned object to
|
||||
# have readline() and readlines() methods.
|
||||
|
||||
|
||||
# XXX It might be better to extract the read buffering code
|
||||
# out of socket._fileobject() and into a base class.
|
||||
|
||||
|
||||
r.recv = r.read
|
||||
fp = socket._fileobject(r)
|
||||
|
||||
|
||||
resp = addinfourl(fp, r.msg, req.get_full_url())
|
||||
resp.code = r.status
|
||||
resp.msg = r.reason
|
||||
|
|
Loading…
Reference in New Issue