summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-08-20 17:07:24 +0300
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-08-20 17:07:24 +0300
commitffb1a8796a5290852c9cabc0b9ec42ffb1a30de7 (patch)
treeb7d2fec8cae2690c22ec58165c71f2f3736544e9 /ChangeLog
parentf481f84318e414d740295959d14ebc004af30a6f (diff)
downloadpylint-ffb1a8796a5290852c9cabc0b9ec42ffb1a30de7.tar.gz
missing-reversed-argument was removed.
The reason behind this is that this kind of errors should be detected by the type checker for *all* the builtins and not as a special case for the reversed builtin. This will happen shortly in the future.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index f619130..2885765 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -253,6 +253,13 @@ ChangeLog for Pylint
* missing-module-attribute was removed and the corresponding
CLI option, required-attributes, which is slated for removal
in Pylint 1.6.
+
+ * missing-reversed-argument was removed.
+
+ The reason behind this is that this kind of errors should be
+ detected by the type checker for *all* the builtins and not
+ as a special case for the reversed builtin. This will happen
+ shortly in the future.