summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorbdanielby <Bruno.Daniel@blue-yonder.com>2014-09-13 14:51:02 +0200
committerbdanielby <Bruno.Daniel@blue-yonder.com>2014-09-13 14:51:02 +0200
commit63997ac37b22c3b7e138cea2127a7560d2aeb5e0 (patch)
treecbc010610a96375fe9d3ab27a9a2c1b04651a6ff /ChangeLog
parent131a5e074e72ac57ba6ed0e1ca0661c864b83ff4 (diff)
parente227da06ea2ea6dd9a4fc052c0df572eb4fd5da8 (diff)
downloadpylint-63997ac37b22c3b7e138cea2127a7560d2aeb5e0.tar.gz
Merged logilab/pylint into default
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog18
1 files changed, 18 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ef4c74f..276dc26 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,9 @@ ChangeLog for Pylint
====================
--
+ * Port source code to be Python 2/3 compatible. This drops the
+ need for 2to3, but does drop support for Python 2.5.
+
* Each message now comes with a confidence level attached, and
can be filtered base on this level. This allows to filter out
all messages that were emitted even though an inference failure
@@ -98,6 +101,21 @@ ChangeLog for Pylint
string contains mixed attribute access arguments and manual
fields. Closes issue #322.
+ * Extend the cases where 'undefined-variable' and 'used-before-assignment'
+ can be detected. Closes issue #291.
+
+ * Add support for customising callback identifiers, by adding a new
+ '--callbacks' command line option. Closes issue #326.
+
+ * Add a new warning, 'logging-format-interpolation', emitted when .format()
+ string interpolation is used within logging function calls.
+
+ * Don't emit 'unbalanced-tuple-unpacking' when the rhs of the assignment
+ is a variable length argument. Closes issue #329.
+
+ * Add a new warning, 'inherit-non-class', emitted when a class inherits
+ from something which is not a class. Closes issue #331.
+
2014-07-26 -- 1.3.0