Home
last modified time | relevance | path

Searched refs:addinfourl (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Lib/urllib/
Derror.py35 class HTTPError(URLError, urllib.response.addinfourl):
37 __super_init = urllib.response.addinfourl.__init__
Dresponse.py68 class addinfourl(addinfo): class
72 super(addinfourl, self).__init__(fp, headers)
Drequest.py108 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/
Dtest_urllib_response.py50 infourl = urllib.response.addinfourl(self.fp, self.test_headers,
/third_party/python/Doc/library/
Durllib.request.rst59 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/
D3.9.0a1.rst3706 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/
DHISTORY27974 calls to addinfourl() in open_file().