I have a module tree containing the following modules module.util and module.x.util. The latest, module.x.util imports some module that again imports module.util (it doesn't import it directly!).
Why does import module.x.util as util work, but from module.x import util not?
In the last case util is <module 'module.util' from ...>! Why that?