Danilo J. S. Bellini added the comment:
Wouldn't a fix for all standard collections be a fix for Python 3.5+, therefore
another issue? http://bugs.python.org/issue23870
This issue is about sets/frozensets Python 3.2+, and I'm pretty sure it's
backwards compatible, as I don
New submission from Danilo J. S. Bellini:
The pprint pretty printer in Python 3 sorts sets/frozensets only if their
length don't fit in one single line/row for the given width, else it was just
leaving repr(my_set_instance) alone, like:
>>> import string, pprint
>>