black/tests/data/py_310/pep_572_py310.py
2022-05-18 12:11:37 -07:00

5 lines
106 B
Python

# Unparenthesized walruses are now allowed in indices since Python 3.10.
x[a:=0]
x[a:=0, b:=1]
x[5, b:=0]