summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-11-30 15:54:18 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2015-11-30 15:54:18 +0200
commitb04bf8e720d65525ff7b2826c06fe92dcc608c37 (patch)
tree16fbf9393405af79d4e5dcb424cce87d9f4dcc06
parent304ae035b9b5e42bb1eb65baecc58d5c9b5ab14d (diff)
downloadpylint-b04bf8e720d65525ff7b2826c06fe92dcc608c37.tar.gz
Add changelog entry for 0c2ba76
-rw-r--r--ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f97a547..1500699 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -13,6 +13,15 @@ ChangeLog for Pylint
* Fix a crash which occurred when old visit methods are encountered
in plugin modules. Closes issue #711.
+ * Add wrong-import-position to check_messages's decorator arguments
+ for ImportChecker.leave_module
+ This fixes an esoteric bug which occurs when ungrouped-imports and
+ wrong-import-order are disabled and pylint is executed on multiple files.
+ What happens is that without wrong-import-position in check_messages,
+ leave_module will never be called, which means that the first non-import node
+ from other files might leak into the current file,
+ leading to wrong-import-position being emitted by pylint.
+
* Added multiple warnings related to imports. 'wrong-import-order'
is emitted when PEP 8 recommendations regarding imports are not
respected (that is, standard imports should be followed by third-party