/third_party/python/PCbuild/ |
D | urlretrieve.py | 11 from urllib.request import urlretrieve 15 from urllib import urlretrieve 24 def urlretrieve(url, filename): function 39 urlretrieve(URL, FILENAME)
|
D | get_external.py | 9 from urllib.request import urlretrieve 19 filename, headers = urlretrieve(
|
D | find_python.bat | 56 @%_Py_HOST_PYTHON% -E "%~dp0\urlretrieve.py" "%_Py_NUGET_URL%" "%_Py_NUGET%"
|
/third_party/python/Lib/test/ |
D | test_urllibnet.py | 159 def urlretrieve(self, *args, **kwargs): member in urlretrieveNetworkTests 162 file_location, info = urllib.request.urlretrieve(*args, **kwargs) 170 with self.urlretrieve(self.logo) as (file_location, info): 179 with self.urlretrieve(self.logo, 188 with self.urlretrieve(self.logo) as (file_location, info): 195 with self.urlretrieve(self.logo) as (file_location, fileheaders): 209 with self.urlretrieve(self.logo, reporthook=recording_reporthook) as (
|
D | test_urllib.py | 750 result = urllib.request.urlretrieve("file:%s" % os_helper.TESTFN) 760 result = urllib.request.urlretrieve(self.constructLocalFileUrl( 784 urllib.request.urlretrieve( 794 urllib.request.urlretrieve(self.constructLocalFileUrl(srcFileName), 807 urllib.request.urlretrieve(self.constructLocalFileUrl(srcFileName), 821 urllib.request.urlretrieve(self.constructLocalFileUrl(srcFileName), 851 urllib.request.urlretrieve(support.TEST_HTTP_URL, 870 urllib.request.urlretrieve(support.TEST_HTTP_URL)
|
/third_party/python/Tools/peg_generator/scripts/ |
D | download_pypi_packages.py | 8 from urllib.request import urlretrieve 34 urlretrieve(url, os.path.join("data", f"{package_name}.json")) 45 urlretrieve(url, os.path.join("data", "pypi", filename))
|
/third_party/flutter/skia/tools/svg/ |
D | svg_downloader.py | 24 urllib.urlretrieve(svg_url, dest_file)
|
/third_party/skia/tools/svg/ |
D | svg_downloader.py | 39 urllib.urlretrieve(file_url, dest_file)
|
/third_party/boost/libs/unordered/ci/ |
D | download-boost-snapshot.py | 32 (filename, headers) = urllib.urlretrieve(download_url)
|
/third_party/python/Doc/library/ |
D | urllib.error.rst | 61 This exception is raised when the :func:`~urllib.request.urlretrieve`
|
D | urllib.request.rst | 1355 .. function:: urlretrieve(url, filename=None, reporthook=None, data=None) 1376 >>> local_filename, headers = urllib.request.urlretrieve('http://python.org/') 1386 :func:`urlretrieve` will raise :exc:`ContentTooShortError` when it detects that 1392 urlretrieve reads more data, but if less data is available, it raises the 1398 If no *Content-Length* header was supplied, urlretrieve can not check the size 1405 calls to :func:`urlretrieve`. 1535 * The caching feature of :func:`urlretrieve` has been disabled until someone 1544 * The :func:`urlopen` and :func:`urlretrieve` functions can cause arbitrarily 1553 * The data returned by :func:`urlopen` or :func:`urlretrieve` is the raw data
|
D | venv.rst | 281 from urllib.request import urlretrieve 356 urlretrieve(url, distpath)
|
/third_party/flutter/skia/tools/skqp/ |
D | cut_release.py | 26 urllib.urlretrieve(url, tmp + '/' + url[url.rindex('/') + 1:])
|
/third_party/skia/tools/skqp/ |
D | cut_release.py | 30 urllib.urlretrieve(url, tmp + '/' + url[url.rindex('/') + 1:])
|
/third_party/python/Tools/unicode/ |
D | makeunicodedata.py | 900 urllib.request.urlretrieve(url, filename=local)
|
/third_party/python/Lib/urllib/ |
D | request.py | 223 def urlretrieve(url, filename=None, reporthook=None, data=None): function
|
/third_party/python/Misc/NEWS.d/ |
D | 3.9.0a1.rst | 4213 temporary files created by ``urlretrieve()`` tests and to clear the
|
/third_party/python/Misc/ |
D | HISTORY | 5683 urllib.request.urlretrieve API now properly supplies a constant non-zero 5743 - Issue #10836: Fix exception raised when file not found in urlretrieve 9079 - Issue #10817: Fix urlretrieve function to raise ContentTooShortError even 19121 - Patch #810023: Fix off-by-one bug in urllib.urlretrieve reporthook 19129 - Patch #1062060: urllib.urlretrieve() now raises a new exception, named 28667 urlretrieve(); commented out gopher test (the test site is dead). 32208 Netscape (why be different). it also supports urlretrieve() with a
|