En Thu, 17 May 2007 02:09:02 -0300, Josiah Carlson <[EMAIL PROTECTED]> escribió:
> All strings of length 0 (there is 1) and 1 (there are 256) are interned. I thought it was the case too, but not always: py> a = "a" py> b = "A".lower() py> a==b True py> a is b False py> a is intern(a) True py> b is intern(b) False -- Gabriel Genellina -- http://mail.python.org/mailman/listinfo/python-list