Add test for cross-module usages

This commit is contained in:
Andy Lee
2017-03-22 10:04:34 -07:00
committed by Dave Halter
parent 281d6a87a0
commit 3e36238da3
4 changed files with 53 additions and 1 deletions

View File

@@ -0,0 +1,4 @@
"""
An import tree, for testing usages.
"""

View File

@@ -0,0 +1,4 @@
from . import b
def foo():
b.bar()

View File

@@ -0,0 +1,2 @@
def bar():
pass