I was playing around with Unicode identifiers and stumbled upon this:
>>> , x = 1, 2
>>> , x
(1, 2)
>>> , f = 1, 2
>>> , f
(2, 2)
What's going on here? Why does Python replace the object referenced by , but only sometimes? Where is that behavior described?