mirror of
https://github.com/micropython/micropython.git
synced 2025-12-16 01:40:14 +01:00
tests/cpydiff/core_import_split_ns_pkgs: Test for split namespace packages.
This commit is contained in:
14
tests/cpydiff/core_import_split_ns_pkgs.py
Normal file
14
tests/cpydiff/core_import_split_ns_pkgs.py
Normal file
@@ -0,0 +1,14 @@
|
||||
"""
|
||||
categories: Core,import
|
||||
description: MicroPython does't support namespace packages split across filesystem.
|
||||
cause: MicroPython's import system is highly optimized for simplicity, minimal memory usage, and minimal filesystem search overhead.
|
||||
workaround: Don't install modules belonging to the same namespace package in different directories. For MicroPython, it's recommended to have at most 3-component module search paths: for your current application, per-user (writable), system-wide (non-writable).
|
||||
"""
|
||||
import sys
|
||||
sys.path.append(sys.path[1] + "/modules")
|
||||
sys.path.append(sys.path[1] + "/modules2")
|
||||
|
||||
import subpkg.foo
|
||||
import subpkg.bar
|
||||
|
||||
print("Two modules of a split namespace package imported")
|
||||
0
tests/cpydiff/modules/subpkg/foo.py
Normal file
0
tests/cpydiff/modules/subpkg/foo.py
Normal file
0
tests/cpydiff/modules2/subpkg/bar.py
Normal file
0
tests/cpydiff/modules2/subpkg/bar.py
Normal file
Reference in New Issue
Block a user