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

import-checker: allow absolute imports of sub modules from local packages

Before this patch, import-checker.py didn't know if a name in ImportFrom
statement are module or not. Therefore, it complained the following example
did "direct symbol import from mercurial".

  # hgext/foo.py
  from mercurial import hg

This patch reuses the dict of local modules to filter out sub-module names.
parent 2a31433a
No related branches found
No related tags found
No related merge requests found
......@@ -321,7 +321,7 @@
# lookup
yield dottedpath
def verify_import_convention(module, source):
def verify_import_convention(module, source, localmods):
"""Verify imports match our established coding convention.
We have 2 conventions: legacy and modern. The modern convention is in
......@@ -334,7 +334,7 @@
absolute = usingabsolute(root)
if absolute:
return verify_modern_convention(module, root)
return verify_modern_convention(module, root, localmods)
else:
return verify_stdlib_on_own_line(root)
......@@ -338,7 +338,7 @@
else:
return verify_stdlib_on_own_line(root)
def verify_modern_convention(module, root, root_col_offset=0):
def verify_modern_convention(module, root, localmods, root_col_offset=0):
"""Verify a file conforms to the modern import convention rules.
The rules of the modern convention are:
......@@ -365,6 +365,7 @@
and readability problems. See `requirealias`.
"""
topmodule = module.split('.')[0]
fromlocal = fromlocalfunc(module, localmods)
# Whether a local/non-stdlib import has been performed.
seenlocal = False
......@@ -380,7 +381,7 @@
return (fmt % args, node.lineno)
if newscope:
# Check for local imports in function
for r in verify_modern_convention(module, node,
for r in verify_modern_convention(module, node, localmods,
node.col_offset + 4):
yield r
elif isinstance(node, ast.Import):
......@@ -443,6 +444,14 @@
# Direct symbol import is only allowed from certain modules and
# must occur before non-symbol imports.
if node.module and node.col_offset == root_col_offset:
if fullname not in allowsymbolimports:
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 from %s', fullname)
......@@ -447,6 +456,6 @@
yield msg('direct symbol import from %s', fullname)
if seennonsymbolrelative:
if symbols and seennonsymbolrelative:
yield msg('symbol import follows non-symbol import: %s',
fullname)
......@@ -577,7 +586,7 @@
src = f.read()
used_imports[modname] = sorted(
imported_modules(src, modname, localmods, ignore_nested=True))
for error, lineno in verify_import_convention(modname, src):
for error, lineno in verify_import_convention(modname, src, localmods):
any_errors = True
print '%s:%d: %s' % (source_path, lineno, error)
f.close()
......
......@@ -85,6 +85,16 @@
> import testpackage.subpackage.levelpriority
> EOF
$ cat > testpackage/importmodulefromsub.py << EOF
> from __future__ import absolute_import
> from .subpackage import foo # not a "direct symbol import"
> EOF
$ cat > testpackage/importsymbolfromsub.py << EOF
> from __future__ import absolute_import
> from .subpackage import foo, nonmodule
> EOF
$ cat > testpackage/sortedentries.py << EOF
> from __future__ import absolute_import
> from . import (
......@@ -108,6 +118,7 @@
testpackage/importfromalias.py:2: ui from testpackage must be "as" aliased to uimod
testpackage/importfromrelative.py:2: import should be relative: testpackage.unsorted
testpackage/importfromrelative.py:2: direct symbol import from testpackage.unsorted
testpackage/importsymbolfromsub.py:2: direct symbol import from testpackage.subpackage
testpackage/latesymbolimport.py:3: symbol import follows non-symbol import: mercurial.node
testpackage/multiple.py:2: multiple imported names: os, sys
testpackage/multiplegroups.py:3: multiple "from . import" statements
......
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