summaryrefslogtreecommitdiff
path: root/Lib/pprint.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* pprint's workhorse _safe_repr() function took time quadratic in the # ofTim Peters2001-05-141-38/+27
* SF bug[ #423781: pprint.isrecursive() broken.Tim Peters2001-05-141-21/+29
* __all__ for several more modulesSkip Montanaro2001-02-121-0/+2
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-1/+1
* Don't call len() if the value is already cached! Caught by GerritFred Drake1999-12-221-1/+1
* Fix indent error in __format(): del context[objid] at the end shouldGuido van Rossum1999-09-021-1/+2
* _safe_repr(): Simplify the condition tests in the first possibleFred Drake1999-02-171-7/+2
* Mass check-in after untabifying all files that need it.Guido van Rossum1998-03-261-149/+149
* Added code to emit trailing ',' for singleton tuples in two places.Guido van Rossum1997-09-141-1/+7
* Slight mods to make the module conform to the documentation.Fred Drake1997-07-181-14/+63
* Fix a couple of glitches identified by Greg Stein.Fred Drake1997-04-181-4/+3