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: Argument Clinic: Annotate the IndentStack class #106934

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Tools/clinic/clinic.py
Original file line number Diff line number Diff line change
Expand Up @@ -4281,7 +4281,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 @@ -4295,7 +4295,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 @@ -4328,19 +4328,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
Loading