Skip to content

Commit

Permalink
gh-104050: Argument Clinic: Annotate the IndentStack class (#106934)
Browse files Browse the repository at this point in the history
  • Loading branch information
erlend-aasland authored Jul 20, 2023
1 parent 1218910 commit d81b4f8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Tools/clinic/clinic.py
Original file line number Diff line number Diff line change
Expand Up @@ -4284,7 +4284,7 @@ def _ensure(self):
if not self.indents:
fail('IndentStack expected indents, but none are defined.')

def measure(self, line):
def measure(self, line: str) -> int:
"""
Returns the length of the line's margin.
"""
Expand All @@ -4298,7 +4298,7 @@ def measure(self, line):
return self.indents[-1]
return len(line) - len(stripped)

def infer(self, line):
def infer(self, line: str) -> int:
"""
Infer what is now the current margin based on this line.
Returns:
Expand Down Expand Up @@ -4331,19 +4331,19 @@ def infer(self, line):
return outdent_count

@property
def depth(self):
def depth(self) -> int:
"""
Returns how many margins are currently defined.
"""
return len(self.indents)

def indent(self, line):
def indent(self, line: str) -> str:
"""
Indents a line by the currently defined margin.
"""
return self.margin + line

def dedent(self, line):
def dedent(self, line: str) -> str:
"""
Dedents a line by the currently defined margin.
(The inverse of 'indent'.)
Expand Down

0 comments on commit d81b4f8

Please sign in to comment.