mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 18:00:48 +02:00
9 lines
119 B
Python
9 lines
119 B
Python
import a.b
|
|
import a.b.c
|
|
from a.b import d
|
|
from a.b.c import d
|
|
|
|
from a import *
|
|
from a import d, e
|
|
from a import (d, e)
|