Issue 36786: "make install" should run compileall in parallel (original) (raw)

This issue has been migrated to GitHub: https://github.com/python/cpython/issues/80967

classification

Title: "make install" should run compileall in parallel
Type: enhancement Stage: resolved
Components: Build Versions: Python 3.8

process

Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: blueyed, pitrou
Priority: normal Keywords: patch

Created on 2019-05-03 18:37 by pitrou, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 13078 merged pitrou,2019-05-03 19:09
Messages (4)
msg341350 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2019-05-03 18:37
Title says it all. Currently, "make install" will bytecode-compile Python sources sequentially even though compileall supports doing it in parallel.
msg342603 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2019-05-15 21:45
New changeset 1a2dd82f56bd813aacc570e172cefe55a8a41504 by Antoine Pitrou in branch 'master': bpo-36786: Run compileall in parallel during "make install" (GH-13078) https://github.com/python/cpython/commit/1a2dd82f56bd813aacc570e172cefe55a8a41504
msg344811 - (view) Author: daniel hahler (blueyed) * Date: 2019-06-06 13:00
This can be closed as per https://github.com/python/cpython/commit/1a2dd82f56bd813aacc570e172cefe55a8a41504.
msg344814 - (view) Author: Antoine Pitrou (pitrou) * (Python committer) Date: 2019-06-06 13:15
Ah, I had forgotten to close this issue. Thanks.
History
Date User Action Args
2022-04-11 14:59:14 admin set github: 80967
2019-06-06 13:15:52 pitrou set status: open -> closedresolution: fixedmessages: + stage: patch review -> resolved
2019-06-06 13:00:35 blueyed set nosy: + blueyedmessages: +
2019-05-15 21:45:21 pitrou set messages: +
2019-05-03 19:09:26 pitrou set keywords: + patchstage: needs patch -> patch reviewpull_requests: + <pull%5Frequest12993>
2019-05-03 18:37:08 pitrou create