summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-11-25 15:17:08 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2015-11-25 15:17:08 +0200
commit8a14894d92105633a42439a993cebd22c44694fd (patch)
tree76f34d4642f6acacd6c4c735f199ad2eb3744d20
parentb29b39b6fce8b5bff642fc2376c25d9896dbc482 (diff)
downloadpylint-8a14894d92105633a42439a993cebd22c44694fd.tar.gz
Add ChangeLog entry for issue #692.
-rw-r--r--ChangeLog12
1 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a07b511..2436dcc 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,7 +2,17 @@ ChangeLog for 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
+ imports and then by local imports). 'ungrouped-imports' is emitted
+ when imports from the same package or module are not placed
+ together, but scattered around in the code. 'wrong-import-position'
+ is emitted when code is mixed with imports, being recommended for the
+ latter to be at the top of the file, in order to figure out easier by
+ a human reader what dependencies a module has.
+ Closes issue #692.
+
* Added a new refactoring warning, 'unneeded-not', emitted
when an expression with the not operator could be simplified.
Closes issue #670.