From 8a14894d92105633a42439a993cebd22c44694fd Mon Sep 17 00:00:00 2001 From: Claudiu Popa Date: Wed, 25 Nov 2015 15:17:08 +0200 Subject: Add ChangeLog entry for issue #692. --- ChangeLog | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) 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. -- cgit v1.2.1