class c: pass
c.x, c.y = (5,6)
reports exception: can't assign to literals
this works in python. This makes solving the destructuring bind bug for classes somewhat tricky. I've worked around it, but when this is solved I'l like to remove the workaround.