summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2021-08-31 14:11:21 +0200
committerGitHub <noreply@github.com>2021-08-31 14:11:21 +0200
commit6cd81934bb9e26cacc3fa5e9165bbaa70066f89b (patch)
tree2d405f747fe169ccb5deb3fc99e7948faa83b475 /ChangeLog
parente1da3c03d2b91f56b0977480856c2a2a6501758a (diff)
downloadpylint-git-6cd81934bb9e26cacc3fa5e9165bbaa70066f89b.tar.gz
Fix false positive `dict-iter-missing-items` for tuple keys (#4939)
This fixes a false positive emitted for dictionaries that contain only tuples as keys. This makes unpacking the dictionary without calling `.items()` valid. This closes #3283
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog4
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 043639dc5..aed43aa9f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -45,6 +45,10 @@ Release date: TBA
* Fix false positive for ``protected-access`` if a protected member is used in type hints of function definitions
+* Fix false positive ``dict-iter-missing-items`` for dictionaries only using tuples as keys
+
+ Closes #3282
+
What's New in Pylint 2.10.3?
============================