[Python-Dev] Re: Comparison of cyclic objects

Ka-Ping Yee ping@lfw.org
Thu, 13 Apr 2000 21:09:49 -0500 (CDT)


On Thu, 13 Apr 2000, Jeremy Hylton wrote:
> Looks like the proposed changed to PyObject_Compare matches E for your
> example.  The printed representation doesn't match, but I'm not sure
> that is as important.

Very, very cool.  Well done.  Say, when did printing get fixed?

> >>> tight = [1, None, "x"]
> >>> tight[1] = tight
> >>> tight
> [1, [...], 'x']


-- ?!ng