mirror of
https://github.com/micropython/micropython.git
synced 2026-01-06 20:20:14 +01: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
|