FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

gh-104050: Argument Clinic: Annotate the IndentStack class by erlend-aasland · Pull Request #106934 · python/cpython · GitHub

/ cpython Public
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension .py  (1) All 1 file type selected
Viewed files
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Unified
Split
Hide whitespace
Diff view
Unified
Split
Hide whitespace
10 changes: 5 additions & 5 deletions Tools/clinic/clinic.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
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

Back | FazBrowse Home | New Git URL