mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 12:48:12 +07:00
Fix "smart step into" command. Test segmentation into classes. Fix and add debugger tests to the Aggregator (was 70, now > 160). Generate Cython files. Merge-request: IJ-MR-156774 Merged-by: Egor Eliseev <Egor.Eliseev@jetbrains.com> GitOrigin-RevId: bcd2335a774aab0441235d9a8c98315ebb021883
14 lines
131 B
Python
14 lines
131 B
Python
|
|
|
|
|
|
def add1(x):
|
|
return x + 1
|
|
|
|
|
|
def add10(x):
|
|
return x + 10
|
|
|
|
|
|
for i in (add1(x) + add10(x) for x in range(3)):
|
|
print(i)
|