You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1005 B
Plaintext
31 lines
1005 B
Plaintext
URL: https://www.pylint.org/
|
|
URL: https://pypi.org/project/pylint/#files
|
|
Version: 1.5.6
|
|
License: GPL
|
|
License File: LICENSE.txt
|
|
|
|
Description:
|
|
This directory contains the pylint module.
|
|
|
|
Local Modifications:
|
|
- applied fix to work around bad interaction between sys.path manipulation in
|
|
pylint itself and multiprocessing's implementation on Windows (DIFF1)
|
|
|
|
|
|
Diffs:
|
|
DIFF1
|
|
diff --git a/third_party/pylint/lint.py b/third_party/pylint/lint.py
|
|
index e10ae56..082d8b3 100644
|
|
--- a/third_party/pylint/lint.py
|
|
+++ b/third_party/pylint/lint.py
|
|
@@ -671,7 +671,8 @@ class PyLinter(configuration.OptionsManagerMixIn,
|
|
files_or_modules = (files_or_modules,)
|
|
|
|
if self.config.jobs == 1:
|
|
- self._do_check(files_or_modules)
|
|
+ with fix_import_path(files_or_modules):
|
|
+ self._do_check(files_or_modules)
|
|
else:
|
|
# Hack that permits running pylint, on Windows, with -m switch
|
|
# and with --jobs, as in 'python -2 -m pylint .. --jobs'.
|