File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -422,10 +422,10 @@ def __init__(self) -> None:
422422 # Short names of variables bound in with statements using "as"
423423 # in a surrounding scope
424424 self .bound_vars : List [str ] = []
425- # Names that can't be safely renamed, per scope ('*' means that
425+ # Stack of names that can't be safely renamed, per scope ('*' means that
426426 # no names can be renamed)
427427 self .skipped : List [Set [str ]] = []
428- # References to variables that we may need to rename. List of
428+ # References to variables that we may need to rename. Stack of
429429 # scopes; each scope is a mapping from name to list of collections
430430 # of names that refer to the same logical variable.
431431 self .refs : List [Dict [str , List [List [NameExpr ]]]] = []
You can’t perform that action at this time.
0 commit comments