| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-44712: Replace "type(literal)" with corresponding builtin types (GH-27294) | Serhiy Storchaka | 2022-05-08 | 1 | -1/+1 |
|
|
* | bpo-41546: make pprint (like print) not write to stdout when it is None (GH-2... | Irit Katriel | 2021-07-19 | 1 | -0/+8 |
|
|
* | bpo-43080: pprint for dataclass instances (GH-24389) | Lewis Gaul | 2021-04-13 | 1 | -1/+84 |
|
|
* | bpo-42914: add a pprint underscore_numbers option (GH-24864) | sblondon | 2021-03-24 | 1 | -0/+13 |
|
|
* | bpo-28850: Fix PrettyPrinter.format overrides ignored for contents of small c... | Irit Katriel | 2020-11-23 | 1 | -1/+12 |
|
|
* | bpo-39994: Fix pprint handling of dict subclasses that override __repr__ (GH-... | Irit Katriel | 2020-08-30 | 1 | -1/+48 |
|
|
* | Fix typos in comments, docs and test names (#15018) | Min ho Kim | 2019-07-30 | 1 | -1/+1 |
|
|
* | bpo-37376: pprint support for SimpleNamespace (GH-14318) | Carl Bordum Hansen | 2019-06-26 | 1 | -0/+59 |
|
|
* | bpo-30670: Add pp function to the pprint module (GH-11769) | Rémi Lapeyre | 2019-03-22 | 1 | -0/+7 |
|
|
* | Backed out changeset af29d89083b3 (closes #25548) (closes #27498) | Benjamin Peterson | 2016-07-14 | 1 | -4/+5 |
|
|
* | Issue #25548: Showing memory address of class objects in repl | Kushal Das | 2016-06-04 | 1 | -5/+4 |
|
|
* | Issue25506: Fixed a copy-pasting error in test_pprint. | Serhiy Storchaka | 2015-10-29 | 1 | -1/+1 |
|
|
* | Issue 24215: Added tests for more builtin types in test_pprint. | Serhiy Storchaka | 2015-05-20 | 1 | -9/+8 |
|\ |
|
| * | Issue 24215: Added tests for more builtin types in test_pprint. | Serhiy Storchaka | 2015-05-20 | 1 | -9/+8 |
|
|
| * | #24215: also back out changeset that broke test_trace in 3.4. | R David Murray | 2015-05-19 | 1 | -8/+9 |
|
|
* | | Back out changeset 955dffec3d94 since it broke the buildbots. | R David Murray | 2015-05-19 | 1 | -8/+9 |
|
|
* | | Added tests for more builtin types. | Serhiy Storchaka | 2015-05-16 | 1 | -9/+8 |
|\ \
| |/ |
|
| * | Added tests for more builtin types. | Serhiy Storchaka | 2015-05-16 | 1 | -9/+8 |
|
|
* | | Issue #23870: The pprint module now supports all standard collections | Serhiy Storchaka | 2015-05-12 | 1 | -0/+148 |
|
|
* | | Issue #22721: An order of multiline pprint output of set or dict containing | Serhiy Storchaka | 2015-04-06 | 1 | -0/+39 |
|
|
* | | Issue #23775: pprint() of OrderedDict now outputs the same representation | Serhiy Storchaka | 2015-03-26 | 1 | -18/+22 |
|
|
* | | Issue #23776: Removed asserts from pprint.PrettyPrinter constructor. | Serhiy Storchaka | 2015-03-26 | 1 | -4/+17 |
|
|
* | | Issue #23502: The pprint module now supports mapping proxies. | Serhiy Storchaka | 2015-03-24 | 1 | -0/+29 |
|
|
* | | Issue #17530: pprint now wraps long bytes objects and bytearrays. | Serhiy Storchaka | 2015-03-24 | 1 | -0/+100 |
|
|
* | | Issue #19105: pprint now more efficiently uses free space at the right. | Serhiy Storchaka | 2015-02-14 | 1 | -11/+86 |
|/ |
|
* | Issue #19104: pprint now produces evaluable output for wrapped strings. | Serhiy Storchaka | 2014-12-20 | 1 | -10/+13 |
|
|
* | Issue #19132: The pprint module now supports compact mode. | Serhiy Storchaka | 2013-10-02 | 1 | -0/+12 |
|
|
* | Issue #19137: The pprint module now correctly formats instances of set and | Serhiy Storchaka | 2013-10-02 | 1 | -12/+67 |
|\ |
|
| * | Issue #19137: The pprint module now correctly formats instances of set and | Serhiy Storchaka | 2013-10-02 | 1 | -12/+67 |
|
|
* | | Issue #17150: pprint now uses line continuations to wrap long string literals. | Antoine Pitrou | 2013-03-23 | 1 | -0/+38 |
|/ |
|
* | Fix test_pprint random dict ordering. | Florent Xicluna | 2012-07-21 | 1 | -2/+3 |
|\ |
|
| * | Fix test_pprint random dict ordering. | Florent Xicluna | 2012-07-21 | 1 | -2/+3 |
|
|
* | | Issues #10017 and #14998: Fix TypeError using pprint on dictionaries with uno... | Florent Xicluna | 2012-07-21 | 1 | -0/+9 |
|\ \
| |/ |
|
| * | Issues #10017 and #14998: Fix TypeError using pprint on dictionaries with uno... | Florent Xicluna | 2012-07-21 | 1 | -0/+9 |
|
|
* | | Implement PEP 412: Key-sharing dictionaries (closes #13903) | Benjamin Peterson | 2012-04-23 | 1 | -0/+4 |
|/ |
|
* | Issue9131: Mark fragile test as CPython-specific | Daniel Stutzbach | 2010-09-21 | 1 | -0/+22 |
|
|
* | Have pprint() respect the order in an OrderedDict. | Raymond Hettinger | 2010-09-09 | 1 | -0/+16 |
|
|
* | Merged revisions 77729 via svnmerge from | Ezio Melotti | 2010-01-24 | 1 | -35/+32 |
|
|
* | Issue 3976: fix pprint for sets, frozensets, and dicts containing unorderable... | Raymond Hettinger | 2009-11-19 | 1 | -0/+19 |
|
|
* | convert old fail* assertions to assert* | Benjamin Peterson | 2009-06-30 | 1 | -4/+4 |
|
|
* | Merged revisions 70712,70714,70764-70765,70769-70771,70773,70776-70777,70788-... | Benjamin Peterson | 2009-04-05 | 1 | -2/+2 |
|
|
* | Merged revisions 64446,64490,64495,64526,64567 via svnmerge from | Georg Brandl | 2008-07-16 | 1 | -0/+11 |
|
|
* | #2621 rename test.test_support to test.support | Benjamin Peterson | 2008-05-20 | 1 | -2/+2 |
|
|
* | Merged revisions 63119-63128,63130-63131,63133,63135-63144,63146-63148,63151-... | Alexandre Vassalotti | 2008-05-16 | 1 | -0/+15 |
|
|
* | Update pprint() to match the new repr style for frozensets | Raymond Hettinger | 2008-01-31 | 1 | -158/+158 |
|
|
* | Merged revisions 60245-60277 via svnmerge from | Christian Heimes | 2008-01-25 | 1 | -0/+192 |
|
|
* | Simplify various spots where: str() is called on something | Walter Dörwald | 2007-06-11 | 1 | -9/+3 |
|
|
* | Merged revisions 55007-55179 via svnmerge from | Guido van Rossum | 2007-05-07 | 1 | -2/+2 |
|
|
* | Rip out all the u"..." literals and calls to unicode(). | Guido van Rossum | 2007-05-02 | 1 | -1/+1 |
|
|
* | Rip out 'long' and 'L'-suffixed integer literals. | Guido van Rossum | 2007-01-15 | 1 | -2/+2 |
|
|