summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDustin Spicuzza <dustin@virtualroadside.com>2018-11-23 17:06:55 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-11-23 17:06:55 (GMT)
commit1d817e4c8259f49602eefe9729743f6d9d748e8d (patch)
treea61b355b3a005f4f69015f24150af36a393a8b33 /Misc
parent9de363271519e0616f4a7b59427057c4810d3acc (diff)
downloadcpython-1d817e4c8259f49602eefe9729743f6d9d748e8d.zip
cpython-1d817e4c8259f49602eefe9729743f6d9d748e8d.tar.gz
cpython-1d817e4c8259f49602eefe9729743f6d9d748e8d.tar.bz2
bpo-29877: compileall: import ProcessPoolExecutor only when needed (GH-4856)
Importing ProcessPoolExecutor may hang or cause an error when the import accesses urandom on a low resource platform https://bugs.python.org/issue29877
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2017-12-16-11-40-52.bpo-29877.SfWhmz.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2017-12-16-11-40-52.bpo-29877.SfWhmz.rst b/Misc/NEWS.d/next/Library/2017-12-16-11-40-52.bpo-29877.SfWhmz.rst
new file mode 100644
index 0000000..cc09533
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2017-12-16-11-40-52.bpo-29877.SfWhmz.rst
@@ -0,0 +1,2 @@
+compileall: import ProcessPoolExecutor only when needed, preventing hangs on
+low resource platforms