vis*_*ell 0

源代码来看:

"""Fixer for import statements.
If spam is being imported from the local directory, this import:
    from spam import eggs
Becomes:
    from .spam import eggs
And this import:
    import spam
Becomes:
    from . import spam
"""
Run Code Online (Sandbox Code Playgroud)

所以兄弟姐妹代表“在同一水平上”