Skip to content

Commit

Permalink
Reserve 'too-many-positional' / 'R0917' for later use
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Dec 4, 2023
1 parent 37081fd commit 8a92b09
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pylint/checkers/design_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,13 @@
"too-many-boolean-expressions",
"Used when an if statement contains too many boolean expressions.",
),
"R0917": (
"Too many positional arguments in a function call.",
"too-many-positional",
"Will be implemented in https://github.com/pylint-dev/pylint/issues/9099,"
"msgid/symbol pair reserved for compatibility with ruff, "
"see https://github.com/astral-sh/ruff/issues/8946.",
),
}
SPECIAL_OBJ = re.compile("^_{2}[a-z]+_{2}$")
DATACLASSES_DECORATORS = frozenset({"dataclass", "attrs"})
Expand Down

0 comments on commit 8a92b09

Please sign in to comment.