Skip to content

Commit 47f2047

Browse files
author
bmartinn
committed
Disable multiprocessing on Windows python2.7
Add protection against Pool initialization failing on us (platform not supported, but import passes)
1 parent 7fa8788 commit 47f2047

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/pip/__main__.py

-7
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,4 @@
2323
from pip._internal.cli.main import main as _main # isort:skip # noqa
2424

2525
if __name__ == '__main__':
26-
try:
27-
# windows multiprocessing support
28-
from multiprocessing import freeze_support
29-
freeze_support()
30-
except ImportError:
31-
pass
32-
3326
sys.exit(_main())

0 commit comments

Comments
 (0)