Home
last modified time | relevance | path

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

/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/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