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
commitfb6fc49720e13c0f27c9ffe7a59f342d03235104 (patch)
tree171dfb1d45e4ea12ff02d3d8cc6378c15ec067e7
parentb161c47f9d29deaaab85bc37cabd076c01885e1f (diff)
downloadpylint-fb6fc49720e13c0f27c9ffe7a59f342d03235104.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 4f91ebf..ea1962a 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.