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
|