Skip to content
Snippets Groups Projects
Commit a09098c6 authored by Yuya Nishihara's avatar Yuya Nishihara
Browse files

import-checker: always build a list of imported symbols

The next patch will rely on it.
parent 0ec8501a
No related branches found
No related tags found
No related merge requests found
......@@ -456,4 +456,11 @@
# Direct symbol import is only allowed from certain modules and
# must occur before non-symbol imports.
found = fromlocal(node.module, node.level)
if found and found[2]: # node.module is a package
prefix = found[0] + '.'
symbols = [n.name for n in node.names
if not fromlocal(prefix + n.name)]
else:
symbols = [n.name for n in node.names]
if node.module and node.col_offset == root_col_offset:
......@@ -459,12 +466,4 @@
if node.module and node.col_offset == root_col_offset:
found = fromlocal(node.module, node.level)
if found and found[2]: # node.module is a package
prefix = found[0] + '.'
symbols = [n.name for n in node.names
if not fromlocal(prefix + n.name)]
else:
symbols = [n.name for n in node.names]
if symbols and fullname not in allowsymbolimports:
yield msg('direct symbol import %s from %s',
', '.join(symbols), fullname)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment