Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-104050: Annotate Argument Clinic DSLParser attributes #106357

Merged
merged 1 commit into from
Jul 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 14 additions & 1 deletion Tools/clinic/clinic.py
Original file line number Diff line number Diff line change
Expand Up @@ -4293,6 +4293,19 @@ def dedent(self, line):
StateKeeper = Callable[[str | None], None]

class DSLParser:
function: Function | None
state: StateKeeper
keyword_only: bool
positional_only: bool
group: int
parameter_state: int
seen_positional_with_default: bool
indent: IndentStack
kind: str
coexist: bool
parameter_continuation: str
preserve_output: bool

def __init__(self, clinic: Clinic) -> None:
self.clinic = clinic

Expand All @@ -4312,7 +4325,7 @@ def __init__(self, clinic: Clinic) -> None:

def reset(self) -> None:
self.function = None
self.state: StateKeeper = self.state_dsl_start
self.state = self.state_dsl_start
self.parameter_indent = None
self.keyword_only = False
self.positional_only = False
Expand Down