mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-06 14:04:26 +08:00
14 lines
100 B
Python
14 lines
100 B
Python
# python >= 3.8
|
|
b = (a:=1, a)
|
|
|
|
#? int()
|
|
b[0]
|
|
#?
|
|
b[1]
|
|
|
|
# Should not fail
|
|
b = ('':=1,)
|
|
|
|
#? int()
|
|
b[0]
|