Searched refs:addinfourl (Results 1 – 7 of 7) sorted by relevance
/third_party/python/Lib/urllib/ |
D | error.py | 35 class HTTPError(URLError, urllib.response.addinfourl): 37 __super_init = urllib.response.addinfourl.__init__
|
D | response.py | 68 class addinfourl(addinfo): class 72 super(addinfourl, self).__init__(fp, headers)
|
D | request.py | 108 from urllib.response import addinfourl, addclosehook 1520 return addinfourl(open(localfile, 'rb'), headers, origurl) 1580 return addinfourl(fp, headers, req.full_url) 1670 return addinfourl(io.BytesIO(data), headers, url) 1767 return addinfourl(fp, headers, fullurl) 1957 return addinfourl(response, response.msg, "http:" + url, 2028 return addinfourl(open(localname, 'rb'), headers, urlfile) 2037 return addinfourl(open(localname, 'rb'), headers, urlfile) 2094 return addinfourl(fp, headers, "ftp:" + url) 2137 return addinfourl(f, headers, url) [all …]
|
/third_party/python/Lib/test/ |
D | test_urllib_response.py | 50 infourl = urllib.response.addinfourl(self.fp, self.test_headers,
|
/third_party/python/Doc/library/ |
D | urllib.request.rst | 59 See :class:`urllib.response.addinfourl` for more detail on these properties. 71 returns a :class:`urllib.response.addinfourl` object. 1587 The typical response object is a :class:`urllib.response.addinfourl` instance: 1589 .. class:: addinfourl 1608 Deprecated in favor of :attr:`~addinfourl.url`. 1613 Deprecated in favor of :attr:`~addinfourl.headers`. 1618 Deprecated in favor of :attr:`~addinfourl.status`. 1623 Deprecated in favor of :attr:`~addinfourl.status`.
|
/third_party/python/Misc/NEWS.d/ |
D | 3.9.0a1.rst | 3706 and status properties, respectively, for HTTPResponse and addinfourl. Also 3707 deprecate the code attribute of addinfourl in favor of the status attribute.
|
/third_party/python/Misc/ |
D | HISTORY | 27974 calls to addinfourl() in open_file().
|