Skip to content

Commit

Permalink
Clarify the comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
yilei committed Mar 17, 2023
1 parent a86ae09 commit c7fa452
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/blib2to3/pytree.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,8 +392,9 @@ class Leaf(Base):
_prefix = "" # Whitespace and comments preceding this token in the input
lineno: int = 0 # Line where this token starts in the input
column: int = 0 # Column where this token starts in the input
# If not None, this Leaf is created by converting block of fmt off/skip
# code, and it points to the first Leaf in the converted code.
# If not None, this Leaf is created by converting a block of fmt off/skip
# code, and `fmt_pass_converted_first_leaf` points to the first Leaf in the
# converted code.
fmt_pass_converted_first_leaf: Optional["Leaf"] = None

def __init__(
Expand Down

0 comments on commit c7fa452

Please sign in to comment.