summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2014-09-26 21:31:59 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2014-09-26 21:31:59 (GMT)
commit2c0a91606105e1606d886c198ea7ed1b195c692f (patch)
treefe0a91c1f633ab3dc48fad0c63f8960695b21ac3 /Misc/NEWS
parent7e23d82cec31c1035fb7d7808443a80e129dd112 (diff)
downloadcpython-2c0a91606105e1606d886c198ea7ed1b195c692f.zip
cpython-2c0a91606105e1606d886c198ea7ed1b195c692f.tar.gz
cpython-2c0a91606105e1606d886c198ea7ed1b195c692f.tar.bz2
Issue #5309: distutils' build and build_ext commands now accept a ``-j``
option to enable parallel building of extension modules.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index fb018be..ad539e3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -139,6 +139,9 @@ Core and Builtins
Library
-------
+- Issue #5309: distutils' build and build_ext commands now accept a ``-j``
+ option to enable parallel building of extension modules.
+
- Issue #22448: Improve canceled timer handles cleanup to prevent
unbound memory usage. Patch by Joshua Moore-Oliva.