diff options
author | Dustin Spicuzza <dustin@virtualroadside.com> | 2018-11-23 17:06:55 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-11-23 17:06:55 (GMT) |
commit | 1d817e4c8259f49602eefe9729743f6d9d748e8d (patch) | |
tree | a61b355b3a005f4f69015f24150af36a393a8b33 /Misc | |
parent | 9de363271519e0616f4a7b59427057c4810d3acc (diff) | |
download | cpython-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.rst | 2 |
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 |