Lines Matching refs:PrettyPrinter
133 pp = pprint.PrettyPrinter()
134 pp = pprint.PrettyPrinter(indent=4, width=40, depth=5,
136 pp = pprint.PrettyPrinter(4, 40, 5, io.StringIO())
137 pp = pprint.PrettyPrinter(sort_dicts=False)
139 pp = pprint.PrettyPrinter(4, 40, 5, io.StringIO(), True)
140 self.assertRaises(ValueError, pprint.PrettyPrinter, indent=-1)
141 self.assertRaises(ValueError, pprint.PrettyPrinter, depth=0)
142 self.assertRaises(ValueError, pprint.PrettyPrinter, depth=-1)
143 self.assertRaises(ValueError, pprint.PrettyPrinter, width=0)
147 pp = pprint.PrettyPrinter()
170 pp = pprint.PrettyPrinter()
197 pp = pprint.PrettyPrinter()
1218 class DottedPrettyPrinter(pprint.PrettyPrinter):
1227 return pprint.PrettyPrinter.format(