Skip to content

Commit

Permalink
Drop parallelization in pip list
Browse files Browse the repository at this point in the history
  • Loading branch information
pradyunsg committed Apr 29, 2020
1 parent 43426ee commit 70597d6
Showing 1 changed file with 1 addition and 11 deletions.
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 70597d6

Please sign in to comment.