We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3008a61 commit fa268aeCopy full SHA for fa268ae
src/pip/_internal/network/download.py
@@ -183,10 +183,9 @@ def _sequential_download(
183
def _download_parallel(
184
self, links: Iterable[Link], location: str, max_workers: int
185
) -> Iterable[Tuple[Link, Tuple[str, str]]]:
186
-
187
"""
188
Wraps the _sequential_download method in a ThreadPoolExecutor. `rich`
189
- progress bar doesn't support naive parallelism, hence the progress bar
+ progress bar doesn't support naive parallelism, hence the progress bar
190
is disabled for parallel downloads. For more info see PR #12388
191
192
with ThreadPoolExecutor(max_workers=max_workers) as pool:
0 commit comments