summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e32e165..c361c10 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -36,6 +36,11 @@ ChangeLog for Pylint
appropriate built-in is not used in an iterating context (semantics
taken from 2to3).
+ * Add a new warning, 'unidiomatic-typecheck', emitted when an explicit
+ typecheck uses type() instead of isinstance(). For example,
+ `type(x) == Y` instead of `isinstance(x, Y)`. Patch by Chris Rebert.
+ Closes issue #299.
+
2015-01-16 -- 1.4.1