summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJacob Walls <jacobtylerwalls@gmail.com>2023-04-23 14:15:34 -0400
committerGitHub <noreply@github.com>2023-04-23 14:15:34 -0400
commit34d3ad71c9cf9d29cc2ee91531b0b9b101a999d7 (patch)
treecb86487cea52967b10aeb1f7c287eaa0f548e2d4 /doc
parent6be842ec680a2cbd249812da0844e5322332d65e (diff)
downloadpylint-git-34d3ad71c9cf9d29cc2ee91531b0b9b101a999d7.tar.gz
Optimize `is_trailing_comma()` (#8606)
Skip is_trailing_comma() call unless `trailing-comma-tuple` enabled
Diffstat (limited to 'doc')
-rw-r--r--doc/whatsnew/fragments/1954.performance3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/whatsnew/fragments/1954.performance b/doc/whatsnew/fragments/1954.performance
index 846b38e2c..aa065f0d1 100644
--- a/doc/whatsnew/fragments/1954.performance
+++ b/doc/whatsnew/fragments/1954.performance
@@ -1,3 +1,4 @@
-Cache `class_is_abstract()`.
+- Optimize `is_trailing_comma()`.
+- Cache `class_is_abstract()`.
Refs #1954