summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorHarshil <37377066+harshil21@users.noreply.github.com>2021-11-03 12:49:53 +0400
committerGitHub <noreply@github.com>2021-11-03 09:49:53 +0100
commitbe9e34722f521608a24a0d00e6991913bbad835a (patch)
tree194e870675b99cfec9b9d03dd4445fdba826ab31 /doc
parent6a7209b9b8b9bbd0fdf08ce22daf325c9d0d28ec (diff)
downloadpylint-git-be9e34722f521608a24a0d00e6991913bbad835a.tar.gz
Use single worker if importing `multiprocessing.synchronize` fails (#5238)
* add test import for multiprocessing.synchronize Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/whatsnew/2.12.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/whatsnew/2.12.rst b/doc/whatsnew/2.12.rst
index 95bdac0db..7fbb4ab71 100644
--- a/doc/whatsnew/2.12.rst
+++ b/doc/whatsnew/2.12.rst
@@ -134,3 +134,8 @@ Other Changes
explicit typing
Closes #5222
+
+* The ``--jobs`` parameter now falls back to 1 if the host operating system does not
+ have functioning shared semaphore implementation.
+
+ Closes #5216