You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-04 09:22:40 +08:00
6 lines
122 B
Python
6 lines
122 B
Python
# We have to do contortions here because
|
|
# lambda's have to be more or less on a line
|
|
|
|
f = lambda x: 1 if x<2 else 3
|
|
f(5)
|