summaryrefslogtreecommitdiff
path: root/Lib/pprint.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #19137: The pprint module now correctly formats empty set and frozensetSerhiy Storchaka2013-10-021-15/+8
* - Issue #13150, #17512: sysconfig no longer parses the Makefile and config.hdoko@ubuntu.com2013-04-081-1/+4
* backout 66e30c4870bb for breaking OSX (#13150)Benjamin Peterson2013-03-221-4/+1
* - Issue #13150: sysconfig no longer parses the Makefile and config.h filesdoko@ubuntu.com2013-03-211-1/+4
* Issue #7092: Fix the DeprecationWarnings emitted by the standard libraryAntoine Pitrou2010-01-041-5/+12
* Fixed issue #2888. Now the behaviour of pprint when working with nestedFacundo Batista2008-06-211-1/+1
* #1713041: fix pprint's handling of maximum depth.Georg Brandl2008-05-121-3/+7
* Shorter pprint's for empty sets and frozensets. Fix indentation of frozenset...Raymond Hettinger2008-01-241-2/+8
* Let pprint() support sets and frozensets (suggested by David Mertz).Raymond Hettinger2008-01-231-2/+15
* #1351692: in pprint, always call format() for dict and list items to enableGeorg Brandl2008-01-201-55/+60
* pprint functions used to sort a dict (by key) if and only ifTim Peters2006-06-021-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
* _safe_repr(): Make the context parameter required; ok since it's only forFred Drake1997-04-161-10/+9
* Muchly changed and improved pprint.py:Fred Drake1997-04-161-110/+167
* Checking in a copy of Fred Drake's data structure pretty-printerGuido van Rossum1997-04-161-0/+143