summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Marek <shlomme@gmail.com>2014-07-25 17:38:13 +0200
committerTorsten Marek <shlomme@gmail.com>2014-07-25 17:38:13 +0200
commit1414393b506e02327f979566210c87d32cd409a1 (patch)
treec19a7f69fe82d8d40f678cb12ffebe0f43c61348
parent42089c9c81a4c7c4c581ab50f22eb1b68669bb03 (diff)
downloadpylint-git-1414393b506e02327f979566210c87d32cd409a1.tar.gz
Update the changelog with some bugs that were fixed.
-rw-r--r--ChangeLog12
1 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4f91ebffe..ea1962a51 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,18 @@ ChangeLog for Pylint
--
+ * Allow hanging continued indentation for implicitly concatenated
+ strings. Closes issue #232.
+
+ * PyLint works under Python 2.5 again, and its test suite passes.
+
+ * Fix some false positives for the cellvar-from-loop warnings.
+ Closes issue #233.
+
+ * Return new astroid class nodes when the inferencer can detect that
+ that result of a function invocation on a type (like `type` or
+ `abc.ABCMeta`) is requested. Closes #205.
+
* Emit 'undefined-variable' for undefined names when using the
Python 3 `metaclass=` argument.