summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcpopa <devnull@localhost>2014-01-09 14:53:16 +0200
committercpopa <devnull@localhost>2014-01-09 14:53:16 +0200
commit6ec7db585fa5b6787fd316483b3c5536a0432464 (patch)
tree126332061be75851b151cc7e0081cad8713c4cdb
parent79ded0d5f158f19569b53f02e53f9eb8b5be1e3d (diff)
downloadpylint-6ec7db585fa5b6787fd316483b3c5536a0432464.tar.gz
Move ChangeLog entry upper.
-rw-r--r--ChangeLog12
1 files changed, 6 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index a27bc5f..fafcf93 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,12 @@ ChangeLog for Pylint
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__.
+
+
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
@@ -65,12 +71,6 @@ ChangeLog for Pylint
* Fix issue #55 (false-positive trailing-whitespace on Windows)
- * 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__.
-
-
2013-08-06 -- 1.0.0
* Add check for the use of 'exec' function