summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-11-04 12:43:40 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2015-11-04 12:43:40 +0200
commit82d8b837b9f7559ea2dbe3090939d70d91dc5ab8 (patch)
tree27739b7fbb774a0bc63e4da270380fa0e7bea74c /ChangeLog
parent185ee278f064a3e444a54bf1998d343beb9683a3 (diff)
downloadpylint-82d8b837b9f7559ea2dbe3090939d70d91dc5ab8.tar.gz
Add ChangeLog entry for too-many-nested-blocks and fix the errors in pylint.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0d12748..6ad85d5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,8 +2,11 @@ ChangeLog for Pylint
--------------------
--
+ * Add a new refactoring error, 'too-many-nested-blocks', which is emitted
+ when a function or a method has too many nested blocks, which makes the
+ code less readable and harder to understand. Closes issue #668.
- * Add new message, 'unsubscriptable-object', that is emitted when
+ * Add a new error, 'unsubscriptable-object', that is emitted when
value used in subscription expression doesn't support subscription
(i.e. doesn't define __getitem__ method).