025e4b6fbc
Fixes issue #7330. Signed-off-by: Damien George <damien@micropython.org>
5 lines
55 B
Python
5 lines
55 B
Python
print([1, 2] is [1, 2])
|
|
a = [1, 2]
|
|
b = a
|
|
print(b is a)
|