Skip to content

Commit

Permalink
Merge pull request #8167 from pradyunsg/drop-list-parallelization
Browse files Browse the repository at this point in the history
  • Loading branch information
pradyunsg committed May 18, 2020
1 parent a526f93 commit 4a063b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
1 change: 1 addition & 0 deletions news/8167.removal
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Drop parallelization from ``pip list --outdated``.
12 changes: 1 addition & 11 deletions src/pip/_internal/commands/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@

import json
import logging
from multiprocessing.dummy import Pool

from pip._vendor import six
from pip._vendor.requests.adapters import DEFAULT_POOLSIZE

from pip._internal.cli import cmdoptions
from pip._internal.cli.req_command import IndexGroupCommand
Expand Down Expand Up @@ -210,18 +208,10 @@ def latest_info(dist):
dist.latest_filetype = typ
return dist

# This is done for 2x speed up of requests to pypi.org
# so that "real time" of this function
# is almost equal to "user time"
pool = Pool(DEFAULT_POOLSIZE)

for dist in pool.imap_unordered(latest_info, packages):
for dist in map(latest_info, packages):
if dist is not None:
yield dist

pool.close()
pool.join()

def output_package_listing(self, packages, options):
packages = sorted(
packages,
Expand Down

0 comments on commit 4a063b7

Please sign in to comment.