diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-02-20 00:29:54 +0200 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-02-20 00:37:12 +0200 |
commit | fb7f94392d9133355145eee71e689b9cac9f1fe1 (patch) | |
tree | f0eea9d1ac67d3bf3d87448e3be0e6f77e85765d /tests/basics/import-pkg2.py | |
parent | 46239413d033a25662700ba39a97b07737b820fc (diff) | |
download | micropython-fb7f94392d9133355145eee71e689b9cac9f1fe1.tar.gz micropython-fb7f94392d9133355145eee71e689b9cac9f1fe1.zip |
import: Implement "from pkg.mod import sym" syntax properly.
http://docs.python.org/3.3/library/functions.html#__import__ :
"When the name variable is of the form package.module, normally, the
top-level package (the name up till the first dot) is returned, not
the module named by name. However, when a non-empty fromlist argument
is given, the module named by name is returned."
Diffstat (limited to 'tests/basics/import-pkg2.py')
-rw-r--r-- | tests/basics/import-pkg2.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/basics/import-pkg2.py b/tests/basics/import-pkg2.py new file mode 100644 index 0000000000..2e9f34121b --- /dev/null +++ b/tests/basics/import-pkg2.py @@ -0,0 +1,18 @@ +from pkg.mod import foo + +try: + pkg +except NameError: + print("NameError") +try: + pkg.mod +except NameError: + print("NameError") +print(foo()) + +# Import few times, must be same module objects +mod_1 = __import__("pkg.mod", None, None, ("foo",)) +mod_2 = __import__("pkg.mod", None, None, ("foo",)) +print(mod_1 is mod_2) +print(mod_1.foo is mod_2.foo) +print(foo is mod_1.foo) |