diff options
author | Walter Dörwald <walter@livinglogic.de> | 2003-12-03 20:26:05 (GMT) |
---|---|---|
committer | Walter Dörwald <walter@livinglogic.de> | 2003-12-03 20:26:05 (GMT) |
commit | c8de4585a6e52e1186828dd929671d3a6c36db95 (patch) | |
tree | b3e5ad74c31c3bb634828a121f7b7d9919fabdb3 /Lib/test/test_pprint.py | |
parent | 7a7ede54d4311d3bcb5000aeedeab8cc80391c70 (diff) | |
download | cpython-c8de4585a6e52e1186828dd929671d3a6c36db95.zip cpython-c8de4585a6e52e1186828dd929671d3a6c36db95.tar.gz cpython-c8de4585a6e52e1186828dd929671d3a6c36db95.tar.bz2 |
Add parameters indent, width and depth to pprint.pprint() and pprint.pformat()
and pass them along to the PrettyPrinter constructor.
Diffstat (limited to 'Lib/test/test_pprint.py')
-rw-r--r-- | Lib/test/test_pprint.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/test/test_pprint.py b/Lib/test/test_pprint.py index d66b78a..a61bb66 100644 --- a/Lib/test/test_pprint.py +++ b/Lib/test/test_pprint.py @@ -154,6 +154,12 @@ class QueryTestCase(unittest.TestCase): for type in [tuple, tuple2]: self.assertEqual(pprint.pformat(type(o)), exp) + # indent parameter + o = range(100) + exp = '[ %s]' % ',\n '.join(map(str, o)) + for type in [list, list2]: + self.assertEqual(pprint.pformat(type(o), indent=4), exp) + def test_subclassing(self): o = {'names with spaces': 'should be presented using repr()', 'others.should.not.be': 'like.this'} |