summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorClaudiu Popa <cpopa@cloudbasesolutions.com>2015-02-28 16:09:39 +0200
committerClaudiu Popa <cpopa@cloudbasesolutions.com>2015-02-28 16:09:39 +0200
commit97bebf6a35f0581491f261e922c8ff0c07cd3eee (patch)
tree86416f00cf6d74a2ad40bd552226965526c9e81f /ChangeLog
parentdd276720942e6481b6a1676d2a272e986a411528 (diff)
downloadpylint-97bebf6a35f0581491f261e922c8ff0c07cd3eee.tar.gz
Add a new warning for the Python 3 porting checker, 'using-cmp-argument'.
This warning is emitted when the `cmp` argument for the `list.sort` or `sorted builtin` is encountered, since it was removed in Python 3. This is part of the issue #376.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog6
1 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 9977d16..821e826 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,7 @@
ChangeLog for Pylint
--------------------
-NOT RELEASED YET -- VERSION
+RELEASE DATE -- VERSION
* Don't require a docstring for empty modules. Closes issue #261.
* Fix a false positive with `too-few-format-args` string warning,
@@ -44,6 +44,10 @@ NOT RELEASED YET -- VERSION
* Add support for combining the Python 3 checker mode with the --jobs
flag (--py3k and --jobs). Closes issue #467.
+ * Add a new warning for the Python 3 porting checker, 'using-cmp-argument',
+ emitted when the `cmp` argument for the `list.sort` or `sorted builtin`
+ is encountered.
+
2015-01-16 -- 1.4.1