import dis

a = 257
b = 256
b += 1

def f():
    c = a, b
    x, y = c
    print x is y

f()
dis.dis(f)