| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-37376: pprint support for SimpleNamespace (GH-14318) | Carl Bordum Hansen | 2019-06-26 | 1 | -0/+27 |
|
|
* | bpo-30670: Add pp function to the pprint module (GH-11769) | Rémi Lapeyre | 2019-03-22 | 1 | -18/+32 |
|
|
* | bpo-35513, unittest: TextTestRunner uses time.perf_counter() (GH-11180) | Victor Stinner | 2018-12-17 | 1 | -3/+3 |
|
|
* | Issue #26778: Fixed "a/an/and" typos in code comment and documentation. | Serhiy Storchaka | 2016-04-17 | 1 | -1/+1 |
|
|
* | Issue #18682: Optimized pprint functions for builtin scalar types. | Serhiy Storchaka | 2015-05-16 | 1 | -18/+4 |
|
|
* | Issue #23870: The pprint module now supports all standard collections | Serhiy Storchaka | 2015-05-12 | 1 | -0/+80 |
|
|
* | Issue #22721: An order of multiline pprint output of set or dict containing | Serhiy Storchaka | 2015-04-06 | 1 | -7/+3 |
|
|
* | Issue #23775: pprint() of OrderedDict now outputs the same representation | Serhiy Storchaka | 2015-03-26 | 1 | -6/+15 |
|
|
* | Issue #23776: Removed asserts from pprint.PrettyPrinter constructor. | Serhiy Storchaka | 2015-03-26 | 1 | -3/+6 |
|
|
* | Issue #23502: The pprint module now supports mapping proxies. | Serhiy Storchaka | 2015-03-24 | 1 | -0/+9 |
|
|
* | Issue #17530: pprint now wraps long bytes objects and bytearrays. | Serhiy Storchaka | 2015-03-24 | 1 | -0/+47 |
|
|
* | Issue #23741: Slightly refactor the pprint module to make it a little more | Serhiy Storchaka | 2015-03-24 | 1 | -108/+122 |
|
|
* | Issue #19105: pprint now more efficiently uses free space at the right. | Serhiy Storchaka | 2015-02-14 | 1 | -28/+59 |
|
|
* | Issue #19104: pprint now produces evaluable output for wrapped strings. | Serhiy Storchaka | 2014-12-20 | 1 | -26/+32 |
|
|
* | Remove builtin "caching" in pprint | Antoine Pitrou | 2013-10-03 | 1 | -28/+22 |
|
|
* | Use cached builtins. | Serhiy Storchaka | 2013-10-02 | 1 | -6/+6 |
|
|
* | Issue #19132: The pprint module now supports compact mode. | Serhiy Storchaka | 2013-10-02 | 1 | -14/+39 |
|
|
* | Issue #19137: The pprint module now correctly formats instances of set and | Serhiy Storchaka | 2013-10-02 | 1 | -15/+13 |
|\ |
|
| * | Issue #19137: The pprint module now correctly formats instances of set and | Serhiy Storchaka | 2013-10-02 | 1 | -15/+13 |
|
|
* | | Issue #17150: pprint now uses line continuations to wrap long string literals. | Antoine Pitrou | 2013-03-23 | 1 | -5/+34 |
|/ |
|
* | Issues #10017 and #14998: Fix TypeError using pprint on dictionaries with uno... | Florent Xicluna | 2012-07-21 | 1 | -1/+5 |
|
|
* | Have pprint() respect the order in an OrderedDict. | Raymond Hettinger | 2010-09-09 | 1 | -3/+6 |
|
|
* | Issue 3976: fix pprint for sets, frozensets, and dicts containing unorderable... | Raymond Hettinger | 2009-11-19 | 1 | -11/+30 |
|
|
* | Merged revisions 63119-63128,63130-63131,63133,63135-63144,63146-63148,63151-... | Alexandre Vassalotti | 2008-05-16 | 1 | -2/+6 |
|
|
* | Update pprint() to match the new repr style for frozensets | Raymond Hettinger | 2008-01-31 | 1 | -3/+2 |
|
|
* | Merged revisions 60245-60277 via svnmerge from | Christian Heimes | 2008-01-25 | 1 | -2/+8 |
|
|
* | Merged revisions 60176-60209 via svnmerge from | Christian Heimes | 2008-01-23 | 1 | -2/+15 |
|
|
* | SF patch# 1770008 by Christian Heimes (plus some extras). | Guido van Rossum | 2007-08-09 | 1 | -1/+1 |
|
|
* | Merged revisions 55328-55341 via svnmerge from | Guido van Rossum | 2007-05-15 | 1 | -1/+4 |
|
|
* | Don't insist on cStringIO. | Guido van Rossum | 2007-05-09 | 1 | -1/+1 |
|
|
* | Nailed test_weakref.py. Pfew, messy! | Guido van Rossum | 2007-02-11 | 1 | -2/+1 |
|
|
* | Fix most trivially-findable print statements. | Guido van Rossum | 2007-02-09 | 1 | -2/+2 |
|
|
* | Restructure comparison dramatically. There is no longer a default | Guido van Rossum | 2006-08-24 | 1 | -1/+6 |
|
|
* | Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn | Thomas Wouters | 2006-06-08 | 1 | -1/+1 |
|
|
* | Change PrettyPrinter.pprint(), so that output is written directly to the | Walter Dörwald | 2005-11-11 | 1 | -1/+2 |
|
|
* | Fix pprint to be able to handle objects that don't have a __repr__ | Walter Dörwald | 2004-11-15 | 1 | -2/+2 |
|
|
* | typo - fixes 954030. | Skip Montanaro | 2004-05-14 | 1 | -2/+2 |
|
|
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -3/+3 |
|
|
* | Add parameters indent, width and depth to pprint.pprint() and pprint.pformat() | Walter Dörwald | 2003-12-03 | 1 | -4/+5 |
|
|
* | Patch #750542: pprint now will pretty print subclasses of list, tuple | Walter Dörwald | 2003-12-03 | 1 | -9/+13 |
|
|
* | Revert 1.25, as overloaded __repr__ is not considered. | Martin v. Löwis | 2003-06-07 | 1 | -8/+8 |
|
|
* | Patch #750542: Use issubclass instead of type identity. | Martin v. Löwis | 2003-06-07 | 1 | -8/+8 |
|
|
* | - PrettyPrinter.isreadable(), .isrecursive(): | Fred Drake | 2002-12-31 | 1 | -21/+16 |
|
|
* | Change the "__ private" names to "_ protected"; this has been a pain for | Fred Drake | 2002-07-08 | 1 | -31/+31 |
|
|
* | Replace boolean test with is None. | Raymond Hettinger | 2002-06-01 | 1 | -1/+1 |
|
|
* | Partial introduction of bools where appropriate. | Guido van Rossum | 2002-04-07 | 1 | -21/+21 |
|
|
* | Add an experimental mechanism to support extending the pprint formatting. | Fred Drake | 2002-04-02 | 1 | -9/+13 |
|
|
* | __format(): Applied SF patch #482003 by Skip to fix multiline dict | Barry Warsaw | 2001-11-28 | 1 | -1/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2001-11-13 | 1 | -1/+1 |
|
|
* | Brute-force performance hackery; buys back about 20% of the time for | Fred Drake | 2001-11-01 | 1 | -121/+165 |
|
|