summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authoryory8 <39745367+yory8@users.noreply.github.com>2019-03-20 08:41:16 +0000
committerClaudiu Popa <pcmanticore@gmail.com>2019-03-20 09:41:16 +0100
commita138a1a8f4bd1ff4ff5718c8b23a9b82c27aef3c (patch)
treef73920bd7dc6827bd0f84e93af32a411ac37e20f /ChangeLog
parent30b2ae713eb4453b305407772b29ea68d7c3d074 (diff)
downloadpylint-git-a138a1a8f4bd1ff4ff5718c8b23a9b82c27aef3c.tar.gz
Add new linter: dict-iter-missing-items
Add a new linter to check against forgotten calls to `.items()` when iterating through a dictionary in a `for` loop. Close #2761
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 095f040f4..160dcaf1c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -42,6 +42,10 @@ Release date: TBA
This check is emitted when ``pylint`` finds a class variable that conflicts with a slot
name, which would raise a ``ValueError`` at runtime.
+* Added new check: dict-iter-missing-items (E1141)
+
+ Close #2761
+
* Fix issue with pylint name in output of python -m pylint --version
Close #2764
@@ -52,7 +56,6 @@ Release date: TBA
Close #2816
-
What's New in Pylint 2.3.0?
===========================