summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-04-07 00:06:17 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-04-07 00:06:17 +0300
commitb93723a8db12e161abc8e2e6c56c50ce9d41e477 (patch)
tree512018a0084dab64fde871b71d59b0da381038f1 /ChangeLog
parent80581e989a94f693fef27561e3fcaada7295b7b6 (diff)
downloadpylint-b93723a8db12e161abc8e2e6c56c50ce9d41e477.tar.gz
Fix a bad-reversed-sequence false positive.
This patch looks for a __reversed__ method for subclasses of dict (this is especially present in OrderedDict implementations).
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog3
1 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4add9d5..dab9381 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -47,6 +47,9 @@ ChangeLog for Pylint
* Don't warn about no-self-use for builtin properties.
+ * Fix a false positive for bad-reversed-sequence, when a subclass
+ of a `dict` provides a __reversed__ method.
+
2015-03-14 -- 1.4.3