circuitpython/tests/basics/is_isnot.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
55 B
Python
Raw Normal View History

print([1, 2] is [1, 2])
a = [1, 2]
b = a
print(b is a)