mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
Previously, it used an odd convention with lowercased names of test data files (with nothing separating individual words), which made adding new tests quite tedious. Also, I removed the test data "exit.py" as it wasn't used by any test. GitOrigin-RevId: 92b1963c67ed01977f5b7ad020984056c9fe045d
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
|