Home
last modified time | relevance | path

Searched refs:ContentTooShortError (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython3/Lib/urllib/
Derror.py73 class ContentTooShortError(URLError): class
Drequest.py102 from urllib.error import URLError, HTTPError, ContentTooShortError
286 raise ContentTooShortError(
1832 raise ContentTooShortError(
/external/python/cpython3/Doc/library/
Durllib.error.rst59 .. exception:: ContentTooShortError(msg, content)
Durllib.request.rst1362 :func:`urlretrieve` will raise :exc:`ContentTooShortError` when it detects that
/external/python/cpython2/Lib/test/
Dtest_urllib.py519 self.assertRaises(urllib.ContentTooShortError, urllib.urlretrieve,
535 … self.assertRaises(urllib.ContentTooShortError, urllib.urlretrieve, 'http://example.com/')
/external/python/cpython2/Lib/
Durllib.py114 class ContentTooShortError(IOError): class
288 raise ContentTooShortError("retrieval incomplete: got only %i out "
/external/python/cpython3/Lib/test/
Dtest_urllib.py713 with self.assertRaises(urllib.error.ContentTooShortError):
730 with self.assertRaises(urllib.error.ContentTooShortError):
/external/python/cpython2/Doc/library/
Durllib.rst183 :func:`urlretrieve` will raise :exc:`ContentTooShortError` when it detects that
436 .. exception:: ContentTooShortError(msg[, content])
/external/python/six/documentation/
Dindex.rst740 * :exc:`py2:urllib.ContentTooShortError`
/external/python/cpython2/Misc/NEWS.d/
D2.7.3rc1.rst738 Fix urlretrieve function to raise ContentTooShortError even when reporthook
/external/python/cpython3/Misc/
DHISTORY9079 - Issue #10817: Fix urlretrieve function to raise ContentTooShortError even