diff options
| author | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-07-29 12:16:45 +0000 |
|---|---|---|
| committer | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-07-29 12:16:45 +0000 |
| commit | 20c619f649978ad99be7e43aa57e71e38d9ae9d2 (patch) | |
| tree | 960f0553e802054ea2007002e49e72c4ee43a71a /src/flake8/checker.py | |
| parent | 530767d36d1a23b986d62567b8364c263f7270ae (diff) | |
| parent | 429d8a196e1ad7317b195b07f0f6a06027d4476f (diff) | |
| download | flake8-20c619f649978ad99be7e43aa57e71e38d9ae9d2.tar.gz | |
Merge branch 'diable-multiprocessing-on-win' into 'master'
Diable multiprocessing behaviour on Windows
*Description of changes*
Due to https://bugs.python.org/issue27649, while Flake8 can *run* with multiprocessing on Windows, it does not behave as we expect it to behave. To provide the best experience that is in agreement with our documentation, we must disable multiprocessing until https://bugs.python.org/issue27649 is fixed and released.
Closes #184
See merge request !105
Diffstat (limited to 'src/flake8/checker.py')
| -rw-r--r-- | src/flake8/checker.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/flake8/checker.py b/src/flake8/checker.py index d331b0c..57fd896 100644 --- a/src/flake8/checker.py +++ b/src/flake8/checker.py @@ -167,7 +167,8 @@ class Manager(object): if (utils.is_windows() and not utils.can_run_multiprocessing_on_windows()): - LOG.warning('The --jobs option is only available on Windows on ' + LOG.warning('The --jobs option is not available on Windows due to' + ' a bug (https://bugs.python.org/issue27649) in ' 'Python 2.7.11+ and 3.3+. We have detected that you ' 'are running an unsupported version of Python on ' 'Windows. Ignoring --jobs arguments.') |
