summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorBrett Cannon <brett@python.org>2014-09-12 14:39:48 (GMT)
committerBrett Cannon <brett@python.org>2014-09-12 14:39:48 (GMT)
commitf1a8df0ac984162795815aae6696155fcd22fdfb (patch)
tree7f2793a0d8e402bc6ed122436af0225e2e8269ce /Doc/whatsnew
parenta56411e5d4c91027c65780c8bdc81dd943cd9c87 (diff)
downloadcpython-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.rst7
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
-------