import datetime from os import path import somesillypackage.a import somesillypackage.child1.a from somesillypackage import b from somesillypackage.child1 import b from somesillypackage.c import C from somesillypackage.child1.c import C from .. import d from . import d from ..e import E from .e import E from .. import somesillypackage from somesillypackage import child2 from somesillypackage.child3 import CHILD from .. import child4 from ..child5 import CHILD