summaryrefslogtreecommitdiff
path: root/Lib/pprint.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-35513, unittest: TextTestRunner uses time.perf_counter() (GH-11180)Miss Islington (bot)2018-12-171-3/+3
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-171-1/+1
* Issue #18682: Optimized pprint functions for builtin scalar types.Serhiy Storchaka2015-05-161-18/+4
* Issue #23870: The pprint module now supports all standard collectionsSerhiy Storchaka2015-05-121-0/+80
* Issue #22721: An order of multiline pprint output of set or dict containingSerhiy Storchaka2015-04-061-7/+3
* Issue #23775: pprint() of OrderedDict now outputs the same representationSerhiy Storchaka2015-03-261-6/+15
* Issue #23776: Removed asserts from pprint.PrettyPrinter constructor.Serhiy Storchaka2015-03-261-3/+6
* Issue #23502: The pprint module now supports mapping proxies.Serhiy Storchaka2015-03-241-0/+9
* Issue #17530: pprint now wraps long bytes objects and bytearrays.Serhiy Storchaka2015-03-241-0/+47
* Issue #23741: Slightly refactor the pprint module to make it a little moreSerhiy Storchaka2015-03-241-108/+122
* Issue #19105: pprint now more efficiently uses free space at the right.Serhiy Storchaka2015-02-141-28/+59
* Issue #19104: pprint now produces evaluable output for wrapped strings.Serhiy Storchaka2014-12-201-26/+32
* Remove builtin "caching" in pprintAntoine Pitrou2013-10-031-28/+22
* Use cached builtins.Serhiy Storchaka2013-10-021-6/+6
* Issue #19132: The pprint module now supports compact mode.Serhiy Storchaka2013-10-021-14/+39
* Issue #19137: The pprint module now correctly formats instances of set andSerhiy Storchaka2013-10-021-15/+13
|\
| * Issue #19137: The pprint module now correctly formats instances of set andSerhiy Storchaka2013-10-021-15/+13
* | Issue #17150: pprint now uses line continuations to wrap long string literals.Antoine Pitrou2013-03-231-5/+34
|/
* Issues #10017 and #14998: Fix TypeError using pprint on dictionaries with uno...Florent Xicluna2012-07-211-1/+5
* Have pprint() respect the order in an OrderedDict.Raymond Hettinger2010-09-091-3/+6
* Issue 3976: fix pprint for sets, frozensets, and dicts containing unorderable...Raymond Hettinger2009-11-191-11/+30
* Merged revisions 63119-63128,63130-63131,63133,63135-63144,63146-63148,63151-...Alexandre Vassalotti2008-05-161-2/+6
* Update pprint() to match the new repr style for frozensetsRaymond Hettinger2008-01-311-3/+2
* Merged revisions 60245-60277 via svnmerge fromChristian Heimes2008-01-251-2/+8
* Merged revisions 60176-60209 via svnmerge fromChristian Heimes2008-01-231-2/+15
* SF patch# 1770008 by Christian Heimes (plus some extras).Guido van Rossum2007-08-091-1/+1
* Merged revisions 55328-55341 via svnmerge fromGuido van Rossum2007-05-151-1/+4
* Don't insist on cStringIO.Guido van Rossum2007-05-091-1/+1
* Nailed test_weakref.py. Pfew, messy!Guido van Rossum2007-02-111-2/+1
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-2/+2
* Restructure comparison dramatically. There is no longer a defaultGuido van Rossum2006-08-241-1/+6
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-1/+1
* Change PrettyPrinter.pprint(), so that output is written directly to theWalter Dörwald2005-11-111-1/+2
* Fix pprint to be able to handle objects that don't have a __repr__Walter Dörwald2004-11-151-2/+2
* typo - fixes 954030.Skip Montanaro2004-05-141-2/+2
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-3/+3
* Add parameters indent, width and depth to pprint.pprint() and pprint.pformat()Walter Dörwald2003-12-031-4/+5
* Patch #750542: pprint now will pretty print subclasses of list, tupleWalter Dörwald2003-12-031-9/+13
* Revert 1.25, as overloaded __repr__ is not considered.Martin v. Löwis2003-06-071-8/+8
* Patch #750542: Use issubclass instead of type identity.Martin v. Löwis2003-06-071-8/+8
* - PrettyPrinter.isreadable(), .isrecursive():Fred Drake2002-12-311-21/+16
* Change the "__ private" names to "_ protected"; this has been a pain forFred Drake2002-07-081-31/+31
* Replace boolean test with is None.Raymond Hettinger2002-06-011-1/+1
* Partial introduction of bools where appropriate.Guido van Rossum2002-04-071-21/+21
* Add an experimental mechanism to support extending the pprint formatting.Fred Drake2002-04-021-9/+13
* __format(): Applied SF patch #482003 by Skip to fix multiline dictBarry Warsaw2001-11-281-1/+1
* Whitespace normalization.Tim Peters2001-11-131-1/+1
* Brute-force performance hackery; buys back about 20% of the time forFred Drake2001-11-011-121/+165
* Remove obsolete email address.Fred Drake2001-10-091-1/+1
* Make pprint more locale-friendly; patch contributed by Denis S. Otkidach.Fred Drake2001-09-041-3/+21