1
0
forked from VimPlug/jedi

Don't assume either namespace is not-None

This commit is contained in:
Laurens Van Houtven
2013-06-23 22:02:37 +02:00
parent 7eff1bbf06
commit 58b165e4b6
2 changed files with 2 additions and 2 deletions

View File

@@ -24,7 +24,7 @@ def test_py2_imports_are_not_always_absolute():
def test_dont_break_imports_without_namespaces():
"""
The code checking for ``from __future__ import absolute_import`` shouldn't
assume that all imports have non-``None`` ``namespace`` attributes.
assume that all imports have non-``None`` namespaces.
"""
src = "from __future__ import absolute_import\nimport xyzzy"
parser = Parser(src, "test.py")