Home
last modified time | relevance | path

Searched refs:HTTPResponse (Results 1 – 12 of 12) sorted by relevance

/third_party/python/Lib/test/
Dtest_httplib.py288 resp = client.HTTPResponse(sock)
308 resp = client.HTTPResponse(sock)
362 resp = client.HTTPResponse(sock, debuglevel=1)
532 resp = client.HTTPResponse(sock)
545 resp = client.HTTPResponse(sock)
557 resp = client.HTTPResponse(sock)
572 resp = client.HTTPResponse(sock)
587 resp = client.HTTPResponse(sock)
606 resp = client.HTTPResponse(sock)
618 resp = client.HTTPResponse(sock)
[all …]
/third_party/python/Doc/library/
Dhttp.client.rst119 .. class:: HTTPResponse(sock, debuglevel=0, method=None, url=None)
138 (the same as :attr:`HTTPResponse.msg`
317 Returns an :class:`HTTPResponse` instance.
335 is passed to any new :class:`HTTPResponse` objects that are created.
447 HTTPResponse Objects
450 An :class:`HTTPResponse` instance wraps the HTTP response from the
460 .. method:: HTTPResponse.read([amt])
464 .. method:: HTTPResponse.readinto(b)
471 .. method:: HTTPResponse.getheader(name, default=None)
478 .. method:: HTTPResponse.getheaders()
[all …]
Durllib.request.rst62 :class:`http.client.HTTPResponse` object slightly modified. In addition
64 same information as the :attr:`~http.client.HTTPResponse.reason`
67 :class:`~http.client.HTTPResponse`.
/third_party/python/Lib/http/
Dclient.py239 class HTTPResponse(io.BufferedIOBase): class
794 response_class = HTTPResponse
/third_party/python/Misc/NEWS.d/
D3.5.2rc1.rst966 Account for remaining Content-Length in HTTPResponse.readline() and read1().
967 Based on patch by Silent Ghost. Also document that HTTPResponse now supports
D3.8.0a4.rst486 Optimized ``http.client.HTTPResponse.read()`` for large response. Patch by
D3.6.0a1.rst1561 Account for remaining Content-Length in HTTPResponse.readline() and read1().
1562 Based on patch by Silent Ghost. Also document that HTTPResponse now supports
D3.10.0a1.rst1844 Improve performance of HTTPResponse.read with a given amount. Patch by Bruce
D3.9.0a1.rst3706 and status properties, respectively, for HTTPResponse and addinfourl. Also
/third_party/python/Doc/whatsnew/
D3.3.rst1423 :class:`http.client.HTTPResponse` now has a
1424 :meth:`~http.client.HTTPResponse.readinto` method, which means it can be used
D2.7.rst1307 * The default :class:`~httplib.HTTPResponse` class used by the :mod:`httplib` module now
/third_party/python/Misc/
DHISTORY2957 - Issue #20007: HTTPResponse.read(0) no more prematurely closes connection.
5364 - Issue #16723: httplib.HTTPResponse no longer marked closed when the connection
5398 - Issue #15633: httplib.HTTPResponse is now mark closed when the server
5572 - Issue #16298: In HTTPResponse.read(), close the socket when there is no
8971 - Issue #13464: Add a readinto() method to http.client.HTTPResponse. Patch
14058 concatenating strings in http.client's HTTPResponse._read_chunked providing a
19966 - HTTPResponse has now a getheaders method.