Cameron Simpson wrote: > I presume StopIteration would get instantiated to a singleton, like > NoneType to None? Just asking. Are you asking about what it should be, or what it is? Either way: >>> a = StopIteration('spam') >>> b = StopIteration('ham') >>> a is b False -- Steven