summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMark Byrne <31762852+mbyrnepr2@users.noreply.github.com>2023-04-24 20:26:18 +0200
committerGitHub <noreply@github.com>2023-04-24 20:26:18 +0200
commitf223c6de3a39eae6d1c76e30b55da28639dd8777 (patch)
treef1a75f508f07e62076280e208586894716cf89e9 /doc
parenta83137da3d72990d41ae993128fdde297cbc36cf (diff)
downloadpylint-git-f223c6de3a39eae6d1c76e30b55da28639dd8777.tar.gz
Fix a false positive for ``bad-dunder-name`` when there is a user-defined ``__index__`` method. (#8619)
Closes #8613
Diffstat (limited to 'doc')
-rw-r--r--doc/whatsnew/fragments/8613.false_positive3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/whatsnew/fragments/8613.false_positive b/doc/whatsnew/fragments/8613.false_positive
new file mode 100644
index 000000000..80d28e9c2
--- /dev/null
+++ b/doc/whatsnew/fragments/8613.false_positive
@@ -0,0 +1,3 @@
+Fix a false positive for ``bad-dunder-name`` when there is a user-defined ``__index__`` method.
+
+Closes #8613