mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-05 23:50:17 +00:00
3ba5b9f3a5
git-svn-id: http://svn.pyinstaller.org/trunk@525 8dd32b29-ccff-0310-8a9a-9233e24343b1
13 lines
406 B
Python
13 lines
406 B
Python
name = 'relimp.B.C'
|
|
|
|
from . import D # Imports relimp.B.D
|
|
from .D import X # Imports relimp.B.D.X
|
|
from .. import E # Imports relimp.E
|
|
from ..F import G # Imports relimp.F.G
|
|
from ..F import H # Imports relimp.F.H
|
|
|
|
assert D.name == 'relimp.B.D'
|
|
assert E.name == 'relimp.E'
|
|
assert G.name == 'relimp.F.G'
|
|
assert H.name == 'relimp.F.H'
|