Files
openide/python/testData/debug/stepping/test_smart_step_into_genexpr.py
Egor Eliseevandintellij-monorepo-bot f192bf3f9a PY-78884 Linux in Docker for PyCharm config PyEnvTestsDebugger
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
2025-03-12 16:40:05 +00:00

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)