[issue36786] "make install" should run compileall in parallel

2019-06-06 Thread Antoine Pitrou
Antoine Pitrou added the comment: Ah, I had forgotten to close this issue. Thanks. -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue36786] "make install" should run compileall in parallel

2019-06-06 Thread daniel hahler
daniel hahler added the comment: This can be closed as per https://github.com/python/cpython/commit/1a2dd82f56bd813aacc570e172cefe55a8a41504. -- nosy: +blueyed ___ Python tracker

[issue36786] "make install" should run compileall in parallel

2019-05-15 Thread Antoine Pitrou
Antoine Pitrou added the comment: 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 --

[issue36786] "make install" should run compileall in parallel

2019-05-03 Thread Antoine Pitrou
Change by Antoine Pitrou : -- keywords: +patch pull_requests: +12993 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue36786] "make install" should run compileall in parallel

2019-05-03 Thread Antoine Pitrou
New submission from Antoine Pitrou : Title says it all. Currently, "make install" will bytecode-compile Python sources sequentially even though compileall supports doing it in parallel. -- components: Build messages: 341350 nosy: pitrou priority: normal severity: normal stage: needs