diff options
author | Brett Cannon <brett@python.org> | 2014-09-12 14:39:48 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2014-09-12 14:39:48 (GMT) |
commit | f1a8df0ac984162795815aae6696155fcd22fdfb (patch) | |
tree | 7f2793a0d8e402bc6ed122436af0225e2e8269ce /Doc/whatsnew | |
parent | a56411e5d4c91027c65780c8bdc81dd943cd9c87 (diff) | |
download | cpython-f1a8df0ac984162795815aae6696155fcd22fdfb.zip cpython-f1a8df0ac984162795815aae6696155fcd22fdfb.tar.gz cpython-f1a8df0ac984162795815aae6696155fcd22fdfb.tar.bz2 |
Issue #16104: Allow compileall to do parallel bytecode compilation.
Both compileall.compile_dir() and the CLI for compileall now allow for
specifying how many workers to use (or 0 to use all CPUs).
Thanks to Claudiu Popa for the patch.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.5.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.5.rst b/Doc/whatsnew/3.5.rst index d72e7f3..2e183a9 100644 --- a/Doc/whatsnew/3.5.rst +++ b/Doc/whatsnew/3.5.rst @@ -134,6 +134,13 @@ New Modules Improved Modules ================ +compileall +---------- + +* :func:`compileall.compile_dir` and :mod:`compileall`'s command-line interface + can now do parallel bytecode compilation. + (Contributed by Claudiu Popa in :issue:`16104`). + doctest ------- |