Lines Matching refs:indent
135 pp = pprint.PrettyPrinter(indent=4, width=40, depth=5,
141 self.assertRaises(ValueError, pprint.PrettyPrinter, indent=-1)
248 self.assertEqual(pprint.pformat(simple, width=1, indent=0)
276 self.assertEqual(pprint.pformat(cont, width=1, indent=0), expected)
309 # indent parameter
313 self.assertEqual(pprint.pformat(type(o), indent=4), exp)
322 self.assertEqual(pprint.pformat(o, indent=4, width=42), expected)
328 self.assertEqual(pprint.pformat(o, indent=4, width=41), expected)
472 formatted = pprint.pformat(ns, width=60, indent=4)
521 formatted = pprint.pformat([dc, dc], width=60, indent=4)