summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-10-20 18:35:18 +0300
committerClaudiu Popa <pcmanticore@gmail.com>2015-10-20 18:35:18 +0300
commit050fc46ebc5d4ddfc50b7553f4af336172431ac5 (patch)
tree5c03800fb87f72875c622f732b90fb27d538f501 /ChangeLog
parent86f5425d304ced106cab4a7543bea3c2d605ba5d (diff)
downloadpylint-050fc46ebc5d4ddfc50b7553f4af336172431ac5.tar.gz
non-iterator-returned can detect classes with iterator-metaclasses.
Closes issue #679.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 957ed56..8d6c9a7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,10 @@ ChangeLog for Pylint
--------------------
--
+
+ * non-iterator-returned can detect classes with iterator-metaclasses.
+ Closes issue #679.
+
* Add a new error, 'unsupported-membership-test', emitted when value
to the right of the 'in' operator doesn't support membership test
protocol (i.e. doesn't define __contains__/__iter__/__getitem__)