summaryrefslogtreecommitdiff
path: root/CONTRIBUTORS.txt
diff options
context:
space:
mode:
authorAndrew Haigh <nelfin@gmail.com>2021-05-11 16:45:37 +1000
committerGitHub <noreply@github.com>2021-05-11 08:45:37 +0200
commit547ed551a3856cda4fe3d87acf5520d5a1a4e436 (patch)
tree3a5d259407418ab1c534c359fca93c1c8a97aee1 /CONTRIBUTORS.txt
parent817a1c606dfe1d653e4f5212c0459a5e92f52477 (diff)
downloadpylint-git-547ed551a3856cda4fe3d87acf5520d5a1a4e436.tar.gz
Update regression tests for PyCQA/astroid#940 (#4466)
* Fix Enum.__member__ regression tests Ref PyCQA/astroid#940. These tests failed after fixing inference of Enum.__members__ due to unexpected "not-iterable" warnings raised. These warnings were not false-positives, as the test definition would have raised TypeError at runtime: .keys and .values on dict/mappingproxy are not properties, but methods. * Update _emit_no_member to ignore abstract properties * Update changelog and contributors
Diffstat (limited to 'CONTRIBUTORS.txt')
-rw-r--r--CONTRIBUTORS.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt
index bb794e639..fb422cf7b 100644
--- a/CONTRIBUTORS.txt
+++ b/CONTRIBUTORS.txt
@@ -482,3 +482,5 @@ contributors:
* das-intensity: contributor
* Jiajunsu (victor): contributor
+
+* Andrew Haigh (nelfin): contributor