other objects in the collection. The references may be circular.
To simplify, one can define
x= list()
x.append(x)
which satisfies x == [x].
Can I create a similar object for tuples which satisfies x == (x,)?
--
http://mail.python.org/mailman/listinfo/python-list
