Issue 3976: fix pprint for sets, frozensets, and dicts containing unorderable types.

This commit is contained in:
Raymond Hettinger 2009-11-19 01:02:56 +00:00
parent c566df3f55
commit b868e63443
3 changed files with 52 additions and 11 deletions

View file

@ -46,6 +46,9 @@ Core and Builtins
Library
-------
- Issue #3976: pprint for sets, frozensets, and dicts now succeed when
they contain unorderable types.
- Issue #7341: Close the internal file object in the TarFile constructor in
case of an error.