aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/pprint.py
Commit message (Expand)AuthorAge
* gh-92546: Move pprint benchmark into pyperformance (GH-94613)Oleg Iarygin2022-07-25
* bpo-45557: Fix underscore_numbers in pprint.pprint(). (GH-29129)Eric V. Smith2021-10-21
* bpo-41546: make pprint (like print) not write to stdout when it is None (GH-2...Irit Katriel2021-07-19
* bpo-43080: pprint for dataclass instances (GH-24389)Lewis Gaul2021-04-13
* bpo-42914: add a pprint underscore_numbers option (GH-24864)sblondon2021-03-24
* bpo-28850: Fix PrettyPrinter.format overrides ignored for contents of small c...Irit Katriel2020-11-23
* bpo-39994: Fix pprint handling of dict subclasses that override __repr__ (GH-...Irit Katriel2020-08-30
* bpo-37376: pprint support for SimpleNamespace (GH-14318)Carl Bordum Hansen2019-06-26
* bpo-30670: Add pp function to the pprint module (GH-11769)Rémi Lapeyre2019-03-22
* bpo-35513, unittest: TextTestRunner uses time.perf_counter() (GH-11180)Victor Stinner2018-12-17
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-17
* Issue #18682: Optimized pprint functions for builtin scalar types.Serhiy Storchaka2015-05-16
* Issue #23870: The pprint module now supports all standard collectionsSerhiy Storchaka2015-05-12
* Issue #22721: An order of multiline pprint output of set or dict containingSerhiy Storchaka2015-04-06
* Issue #23775: pprint() of OrderedDict now outputs the same representationSerhiy Storchaka2015-03-26
* Issue #23776: Removed asserts from pprint.PrettyPrinter constructor.Serhiy Storchaka2015-03-26
* Issue #23502: The pprint module now supports mapping proxies.Serhiy Storchaka2015-03-24
* Issue #17530: pprint now wraps long bytes objects and bytearrays.Serhiy Storchaka2015-03-24
* Issue #23741: Slightly refactor the pprint module to make it a little moreSerhiy Storchaka2015-03-24
* Issue #19105: pprint now more efficiently uses free space at the right.Serhiy Storchaka2015-02-14
* Issue #19104: pprint now produces evaluable output for wrapped strings.Serhiy Storchaka2014-12-20
* Remove builtin "caching" in pprintAntoine Pitrou2013-10-03
* Use cached builtins.Serhiy Storchaka2013-10-02
* Issue #19132: The pprint module now supports compact mode.Serhiy Storchaka2013-10-02
* Issue #19137: The pprint module now correctly formats instances of set andSerhiy Storchaka2013-10-02
|\
| * Issue #19137: The pprint module now correctly formats instances of set andSerhiy Storchaka2013-10-02
* | Issue #17150: pprint now uses line continuations to wrap long string literals.Antoine Pitrou2013-03-23
|/
* Issues #10017 and #14998: Fix TypeError using pprint on dictionaries with uno...Florent Xicluna2012-07-21
* Have pprint() respect the order in an OrderedDict.Raymond Hettinger2010-09-09
* Issue 3976: fix pprint for sets, frozensets, and dicts containing unorderable...Raymond Hettinger2009-11-19
* Merged revisions 63119-63128,63130-63131,63133,63135-63144,63146-63148,63151-...Alexandre Vassalotti2008-05-16
* Update pprint() to match the new repr style for frozensetsRaymond Hettinger2008-01-31
* Merged revisions 60245-60277 via svnmerge fromChristian Heimes2008-01-25
* Merged revisions 60176-60209 via svnmerge fromChristian Heimes2008-01-23
* SF patch# 1770008 by Christian Heimes (plus some extras).Guido van Rossum2007-08-09
* Merged revisions 55328-55341 via svnmerge fromGuido van Rossum2007-05-15
* Don't insist on cStringIO.Guido van Rossum2007-05-09
* Nailed test_weakref.py. Pfew, messy!Guido van Rossum2007-02-11
* Fix most trivially-findable print statements.Guido van Rossum2007-02-09
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-24
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-08
* Change PrettyPrinter.pprint(), so that output is written directly to theWalter Dörwald2005-11-11
* Fix pprint to be able to handle objects that don't have a __repr__Walter Dörwald2004-11-15
* typo - fixes 954030.Skip Montanaro2004-05-14
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-12
* Add parameters indent, width and depth to pprint.pprint() and pprint.pformat()Walter Dörwald2003-12-03
* Patch #750542: pprint now will pretty print subclasses of list, tupleWalter Dörwald2003-12-03
* Revert 1.25, as overloaded __repr__ is not considered.Martin v. Löwis2003-06-07
* Patch #750542: Use issubclass instead of type identity.Martin v. Löwis2003-06-07
* - PrettyPrinter.isreadable(), .isrecursive():Fred Drake2002-12-31