Skip to content

Commit

Permalink
gh-104050: Annotate Argument Clinic DSLParser attributes (#106357)
Browse files Browse the repository at this point in the history
  • Loading branch information
erlend-aasland authored Jul 3, 2023
1 parent 35963da commit 18fedd0
Showing 1 changed file with 14 additions and 1 deletion.
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

0 comments on commit 18fedd0

Please sign in to comment.