Skip to content

Commit 532c820

Browse files
author
facundo.batista
committedJun 21, 2008
Fixed issue #2888. Now the behaviour of pprint when working with nested structures follows the common sense (and works like in 2.5 and 3.0). git-svn-id: http://svn.python.org/projects/python/trunk@64446 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 185c775 commit 532c820

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed
 

‎Doc/library/pprint.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The :mod:`pprint` module defines one class:
5656
>>> stuff.insert(0, stuff[:])
5757
>>> pp = pprint.PrettyPrinter(indent=4)
5858
>>> pp.pprint(stuff)
59-
[ [ 'spam', 'eggs', 'lumberjack', 'knights', 'ni'],
59+
[ ['spam', 'eggs', 'lumberjack', 'knights', 'ni'],
6060
'spam',
6161
'eggs',
6262
'lumberjack',

‎Lib/pprint.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ def _format(self, object, stream, indent, allowance, context, level):
194194
else:
195195
write('(')
196196
endchar = ')'
197-
if self._indent_per_level > 1:
197+
if self._indent_per_level > 1 and sepLines:
198198
write((self._indent_per_level - 1) * ' ')
199199
if length:
200200
context[objid] = 1

‎Lib/test/test_pprint.py

+11
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,17 @@ def test_basic_line_wrap(self):
170170
for type in [list, list2]:
171171
self.assertEqual(pprint.pformat(type(o), indent=4), exp)
172172

173+
def test_nested_indentations(self):
174+
o1 = list(range(10))
175+
o2 = dict(first=1, second=2, third=3)
176+
o = [o1, o2]
177+
expected = """\
178+
[ [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
179+
{ 'first': 1,
180+
'second': 2,
181+
'third': 3}]"""
182+
self.assertEqual(pprint.pformat(o, indent=4, width=42), expected)
183+
173184
def test_sorted_dict(self):
174185
# Starting in Python 2.5, pprint sorts dict displays by key regardless
175186
# of how small the dictionary may be.

‎Misc/NEWS

+4
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ Extension Modules
108108
Library
109109
-------
110110

111+
- Issue #2888: Fixed the behaviour of pprint when working with nested
112+
structures, to match the behaviour of 2.5 and 3.0 (now follows the common
113+
sense).
114+
111115
- Issue #3136: fileConfig()'s disabling of old loggers is now conditional via
112116
an optional disable_existing_loggers parameter, but the default value is
113117
such that the old behaviour is preserved. Thanks to Leandro Lucarella for

0 commit comments

Comments
 (0)