summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-11-05 01:11:36 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-11-05 01:11:36 (GMT)
commit88281ceed02d8f4599cb22f196e40bc30f4fb689 (patch)
treef24d14a2a880599dc0958cf8ba063c05d436c687 /Misc
parentda4887a88d4400ef12aca0bb8269838d2c9f9a00 (diff)
downloadcpython-88281ceed02d8f4599cb22f196e40bc30f4fb689.zip
cpython-88281ceed02d8f4599cb22f196e40bc30f4fb689.tar.gz
cpython-88281ceed02d8f4599cb22f196e40bc30f4fb689.tar.bz2
Issue #28485: Check for negative workers even without ProcessPoolExecutor
This matches the documentation, and passes the test suite when multithreading is disabled.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3e2b34f..c66a521 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -113,6 +113,10 @@ Core and Builtins
Library
-------
+- Issue #28485: Always raise ValueError for negative
+ compileall.compile_dir(workers=...) parameter, even when multithreading is
+ unavailable.
+
- Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator when
the garbage collector is invoked in other thread. Based on patch by
Sebastian Cufre.