Last active
July 23, 2021 00:38
-
-
Save FFY00/32342435fec4fe21751c7a680a89b01f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# nothing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import a.b.c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import a.b | |
a.b |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> import a.b | |
Traceback (most recent call last): | |
File "<stdin>", line 1, in <module> | |
File "/home/anubis/git/python-nest/test/a/b/__init__.py", line 1, in <module> | |
import a.b.c | |
File "/home/anubis/git/python-nest/test/a/b/c.py", line 3, in <module> | |
a.b | |
AttributeError: module 'a' has no attribute 'b' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a | |
├── b | |
│ ├── c.py | |
│ └── __init__.py | |
└── __init__.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment