summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6ed61d6..38dea0e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,10 +2,20 @@ ChangeLog for Pylint
====================
--
+ * bitbucket #128: pylint doesn't crash when looking
+ for used-before-assignment in context manager
+ assignments.
+
+ * Add new warning, 'bad-reversed-sequence', for checking that the
+ reversed() builtin receive a sequence (implements __getitem__ and __len__,
+ without being a dict or a dict subclass) or an instance which implements
+ __reversed__.
+
* Add new warning 'bad-exception-context', checking
that `raise ... from ...` uses a proper exception context
(None or an exception).
+
2013-12-22 -- 1.1.0
* Add new check for use of deprecated pragma directives "pylint:disable-msg"
or "pylint:enable-msg" (I0022, deprecated-pragma) which was previously