mirror of
https://github.com/micropython/micropython.git
synced 2025-09-04 17:00:30 +02:00
5 lines
102 B
Python
5 lines
102 B
Python
from a import b as c
|
|
from a.b import c as d
|
|
from a.b.c import d as e
|
|
from a.b.c import d as e, f as h
|