mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-24 00:44:37 +07:00
10 lines
133 B
Python
10 lines
133 B
Python
foo = 123
|
|
import a
|
|
import b.c
|
|
import d.e.f
|
|
import g as h
|
|
import i.j as k
|
|
from l import m
|
|
from n import o as p
|
|
from q.r import s as t
|