summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-04-24 19:50:25 +0000
committerGitHub <noreply@github.com>2023-04-24 19:50:25 +0000
commite507a4d87ec80e706ac0c8ce2d23bd28006cbbbc (patch)
treebb12536fcd04cb94a57c1e832ab632e8862446b8 /tests
parent389e14c36819cb87190fd412d3f366a3283f0078 (diff)
downloadpylint-git-e507a4d87ec80e706ac0c8ce2d23bd28006cbbbc.tar.gz
Fix a false positive for ``bad-dunder-name`` when there is a user-defined ``__index__`` method. (#8619) (#8622)
Closes #8613 (cherry picked from commit f223c6de3a39eae6d1c76e30b55da28639dd8777) Co-authored-by: Mark Byrne <31762852+mbyrnepr2@users.noreply.github.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/functional/ext/bad_dunder/bad_dunder_name.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/functional/ext/bad_dunder/bad_dunder_name.py b/tests/functional/ext/bad_dunder/bad_dunder_name.py
index 48247aba0..6008866b1 100644
--- a/tests/functional/ext/bad_dunder/bad_dunder_name.py
+++ b/tests/functional/ext/bad_dunder/bad_dunder_name.py
@@ -49,6 +49,9 @@ class Apples:
def __doc__(self):
return "Docstring"
+ def __index__(self):
+ return 1
+
def __increase_me__(val):
return val + 1