1. 6a7b3a7 Issue #26778: Fixed "a/an/and" typos in code comment and documentation. by Serhiy Storchaka · 8 years ago
  2. 8eb1f07 Issue #18682: Optimized pprint functions for builtin scalar types. by Serhiy Storchaka · 9 years ago
  3. bedbf96 Issue #23870: The pprint module now supports all standard collections by Serhiy Storchaka · 9 years ago
  4. 62aa7dc Issue #22721: An order of multiline pprint output of set or dict containing by Serhiy Storchaka · 9 years ago
  5. aa4c36f Issue #23775: pprint() of OrderedDict now outputs the same representation by Serhiy Storchaka · 9 years ago
  6. f3fa308 Issue #23776: Removed asserts from pprint.PrettyPrinter constructor. by Serhiy Storchaka · 9 years ago
  7. 87eb482 Issue #23502: The pprint module now supports mapping proxies. by Serhiy Storchaka · 9 years ago
  8. 022f203 Issue #17530: pprint now wraps long bytes objects and bytearrays. by Serhiy Storchaka · 9 years ago
  9. 8e2aa88 Issue #23741: Slightly refactor the pprint module to make it a little more by Serhiy Storchaka · 9 years ago
  10. a750ce3 Issue #19105: pprint now more efficiently uses free space at the right. by Serhiy Storchaka · 9 years ago
  11. fe3dc37 Issue #19104: pprint now produces evaluable output for wrapped strings. by Serhiy Storchaka · 9 years ago
  12. 7d36e2f Remove builtin "caching" in pprint by Antoine Pitrou · 11 years ago
  13. 57d5c08 Use cached builtins. by Serhiy Storchaka · 11 years ago
  14. 7c411a4 Issue #19132: The pprint module now supports compact mode. by Serhiy Storchaka · 11 years ago
  15. 092bd38 Issue #19137: The pprint module now correctly formats instances of set and by Serhiy Storchaka · 11 years ago
  16. 5184438 Issue #19137: The pprint module now correctly formats instances of set and by Serhiy Storchaka · 11 years ago
  17. 64c16c3 Issue #17150: pprint now uses line continuations to wrap long string literals. by Antoine Pitrou · 11 years ago
  18. d6da90f Issues #10017 and #14998: Fix TypeError using pprint on dictionaries with unorderable key. by Florent Xicluna · 12 years ago
  19. bad3c88 Have pprint() respect the order in an OrderedDict. by Raymond Hettinger · 14 years ago
  20. a7da166 Issue 3976: fix pprint for sets, frozensets, and dicts containing unorderable types. by Raymond Hettinger · 15 years ago
  21. eca20b6 Merged revisions 63119-63128,63130-63131,63133,63135-63144,63146-63148,63151-63152,63155-63165,63167-63176,63181-63186,63188-63189 via svnmerge from by Alexandre Vassalotti · 16 years ago
  22. 4b8db41 Update pprint() to match the new repr style for frozensets by Raymond Hettinger · 16 years ago
  23. 969fe57 Merged revisions 60245-60277 via svnmerge from by Christian Heimes · 16 years ago
  24. 1af737c Merged revisions 60176-60209 via svnmerge from by Christian Heimes · 16 years ago
  25. 34d1928 SF patch# 1770008 by Christian Heimes (plus some extras). by Guido van Rossum · 17 years ago
  26. 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
  27. 7fe7d1a Don't insist on cStringIO. by Guido van Rossum · 17 years ago
  28. 07f2436 Nailed test_weakref.py. Pfew, messy! by Guido van Rossum · 17 years ago
  29. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  30. 47b9ff6 Restructure comparison dramatically. There is no longer a default by Guido van Rossum · 18 years ago
  31. 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
  32. e62e936 Change PrettyPrinter.pprint(), so that output is written directly to the by Walter Dörwald · 19 years ago
  33. 1b626ca Fix pprint to be able to handle objects that don't have a __repr__ by Walter Dörwald · 20 years ago
  34. 2dc0c13 typo - fixes 954030. by Skip Montanaro · 20 years ago
  35. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 20 years ago
  36. c8de458 Add parameters indent, width and depth to pprint.pprint() and pprint.pformat() by Walter Dörwald · 20 years ago
  37. 7a7ede5 Patch #750542: pprint now will pretty print subclasses of list, tuple by Walter Dörwald · 20 years ago
  38. d02879d Revert 1.25, as overloaded __repr__ is not considered. by Martin v. Löwis · 21 years ago
  39. e570003 Patch #750542: Use issubclass instead of type identity. by Martin v. Löwis · 21 years ago
  40. 397b615 - PrettyPrinter.isreadable(), .isrecursive(): by Fred Drake · 21 years ago
  41. e6691ef Change the "__ private" names to "_ protected"; this has been a pain for by Fred Drake · 22 years ago
  42. 16e3c42 Replace boolean test with is None. by Raymond Hettinger · 22 years ago
  43. 8ca162f Partial introduction of bools where appropriate. by Guido van Rossum · 22 years ago
  44. aee113d Add an experimental mechanism to support extending the pprint formatting. by Fred Drake · 22 years ago
  45. 00859c0 __format(): Applied SF patch #482003 by Skip to fix multiline dict output. by Barry Warsaw · 23 years ago
  46. 8876848 Whitespace normalization. by Tim Peters · 23 years ago
  47. 49cc01e Brute-force performance hackery; buys back about 20% of the time for by Fred Drake · 23 years ago
  48. 3e5e661 Remove obsolete email address. by Fred Drake · 23 years ago
  49. 1ef106c Make pprint more locale-friendly; patch contributed by Denis S. Otkidach. by Fred Drake · 23 years ago
  50. 95b3f78 pprint's workhorse _safe_repr() function took time quadratic in the # of by Tim Peters · 23 years ago
  51. a814db5 SF bug[ #423781: pprint.isrecursive() broken. by Tim Peters · 23 years ago
  52. c62c81e __all__ for several more modules by Skip Montanaro · 23 years ago
  53. 7e47402 Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either by Thomas Wouters · 24 years ago
  54. fbff97a Don't call len() if the value is already cached! Caught by Gerrit by Fred Drake · 24 years ago
  55. 183fd40 Fix indent error in __format(): del context[objid] at the end should by Guido van Rossum · 25 years ago
  56. d804f4e _safe_repr(): Simplify the condition tests in the first possible by Fred Drake · 25 years ago
  57. 45e2fbc Mass check-in after untabifying all files that need it. by Guido van Rossum · 26 years ago
  58. a1dbe50 Added code to emit trailing ',' for singleton tuples in two places. by Guido van Rossum · 27 years ago
  59. e0ffabe Slight mods to make the module conform to the documentation. by Fred Drake · 27 years ago
  60. 5fd026d Fix a couple of glitches identified by Greg Stein. by Fred Drake · 27 years ago
  61. f39d051 _safe_repr(): Make the context parameter required; ok since it's only for by Fred Drake · 27 years ago
  62. a89fda0 Muchly changed and improved pprint.py: by Fred Drake · 27 years ago
  63. 5e92aff Checking in a copy of Fred Drake's data structure pretty-printer by Guido van Rossum · 27 years ago