summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-12-03 22:04:38 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2015-12-03 22:04:38 +0200
commite54a5ec5bf41840de96df649e62e9b2fac316fa7 (patch)
tree8d9362fc3891822496b2c1f6594916b6242d830a /ChangeLog
parentb2e4b5796db6c165460a6b37e7360bffe84d734e (diff)
downloadpylint-e54a5ec5bf41840de96df649e62e9b2fac316fa7.tar.gz
Accept only functions and methods for the deprecated-method checker.
This prevents a crash which can occur when an object doesn't have .qname() method after the inference.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 5e7b4b3..0e6433e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,11 @@ ChangeLog for Pylint
--------------------
--
+ * Accept only functions and methods for the deprecated-method checker.
+
+ This prevents a crash which can occur when an object doesn't have
+ .qname() method after the inference.
+
* Added a new warning, 'unsupported-assignment-operation', which is
emitted when item assignment is tried on an object which doesn't
have this ability. Closes issue #591.
@@ -10,6 +15,10 @@ ChangeLog for Pylint
emitted when item deletion is tried on an object which doesn't
have this ability. Closes issue #592.
+
+2015-12-02 -- 1.5.1
+
+
* Fix a crash which occurred when old visit methods are encountered
in plugin modules. Closes issue #711.