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:
422
422
# Short names of variables bound in with statements using "as"
423
423
# in a surrounding scope
424
424
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
426
426
# no names can be renamed)
427
427
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
429
429
# scopes; each scope is a mapping from name to list of collections
430
430
# of names that refer to the same logical variable.
431
431
self .refs : List [Dict [str , List [List [NameExpr ]]]] = []
You can’t perform that action at this time.
0 commit comments