You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
493 B
9 lines
493 B
"""
|
|
categories: Core,import
|
|
description: __path__ attribute of a package has a different type (single string instead of list of strings) in MicroPython
|
|
cause: MicroPython does't support namespace packages split across filesystem. Beyond that, MicroPython's import system is highly optimized for minimal memory usage.
|
|
workaround: Details of import handling is inherently implementation dependent. Don't rely on such details in portable applications.
|
|
"""
|
|
import modules
|
|
|
|
print(modules.__path__)
|
|
|