diff options
author | Raymond Hettinger <python@rcn.com> | 2008-01-31 01:10:03 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2008-01-31 01:10:03 (GMT) |
commit | 4b8db419c278215ac1c79f4aac2b1453b13e8c83 (patch) | |
tree | 46b9ef850ed56c6ea6dae90de74947f965360b58 /Lib/pprint.py | |
parent | db96789ba7dd79438ca01d21d5f62a3adda2ffeb (diff) | |
download | cpython-4b8db419c278215ac1c79f4aac2b1453b13e8c83.zip cpython-4b8db419c278215ac1c79f4aac2b1453b13e8c83.tar.gz cpython-4b8db419c278215ac1c79f4aac2b1453b13e8c83.tar.bz2 |
Update pprint() to match the new repr style for frozensets
Diffstat (limited to 'Lib/pprint.py')
-rw-r--r-- | Lib/pprint.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/pprint.py b/Lib/pprint.py index b903391..43b6b0d 100644 --- a/Lib/pprint.py +++ b/Lib/pprint.py @@ -175,13 +175,12 @@ class PrettyPrinter: write('{') endchar = '}' object = sorted(object) - indent += 4 elif issubclass(typ, frozenset): if not length: write('frozenset()') return - write('frozenset([') - endchar = '])' + write('frozenset({') + endchar = '})' object = sorted(object) indent += 10 else: |