summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorDmitry Pribysh <dmand@yandex.ru>2015-10-01 15:13:12 +0300
committerDmitry Pribysh <dmand@yandex.ru>2015-10-01 15:13:12 +0300
commitd26780d82fe0d6a0304bb17025a5a773cf187808 (patch)
tree8224cc3a8a74bc4e858664f58915dd4265c164da /ChangeLog
parent0a4169614daa0708abdfa05bcdd3ad670e3d94a1 (diff)
downloadpylint-d26780d82fe0d6a0304bb17025a5a773cf187808.tar.gz
Add checker to identify multiple imports on one line.
Fixes issue #598. Had to modify some functional tests to ignore new message.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2ed0746..8c9811c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,9 +2,12 @@ ChangeLog for Pylint
--------------------
--
+ * Add checker to identify multiple imports on one line.
+ Closes issue #598.
+
* Fix unused-argument false positive when the "+=" operator is used.
Closes issue #518.
-
+
* Don't emit import-error for ignored modules. PyLint will not emit import
errors for any import which is, or is a subpackage of, a module in
the ignored-modules list. Closes issue #223.