Files
RustPython/tests/snippets/3.1.3.5.py
2018-07-09 22:06:49 +02:00

4 lines
43 B
Python

x = [1,999,3]
x[1] = 2
assert [1,2,3] == x