Home
last modified time | relevance | path

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

/external/python/cpython3/Lib/urllib/
Derror.py77 class ContentTooShortError(URLError): class
Drequest.py103 from urllib.error import URLError, HTTPError, ContentTooShortError
287 raise ContentTooShortError(
1839 raise ContentTooShortError(
/external/python/cpython3/Doc/library/
Durllib.error.rst60 .. exception:: ContentTooShortError(msg, content)
Durllib.request.rst1362 :func:`urlretrieve` will raise :exc:`ContentTooShortError` when it detects that
/external/python/cpython2/Lib/test/
Dtest_urllib.py518 self.assertRaises(urllib.ContentTooShortError, urllib.urlretrieve,
534 … 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.py709 with self.assertRaises(urllib.error.ContentTooShortError):
726 with self.assertRaises(urllib.error.ContentTooShortError):
/external/python/cpython2/Doc/library/
Durllib.rst178 :func:`urlretrieve` will raise :exc:`ContentTooShortError` when it detects that
431 .. exception:: ContentTooShortError(msg[, content])
/external/python/cpython2/Misc/
DNEWS4445 - Issue #10817: Fix urlretrieve function to raise ContentTooShortError even
/external/python/cpython3/Misc/
DHISTORY9079 - Issue #10817: Fix urlretrieve function to raise ContentTooShortError even