1. f3ebc9f Issue #20491: The textwrap.TextWrapper class now honors non-breaking spaces. by Serhiy Storchaka · 8 years ago
  2. f8152c6 Issue #21827: Fixed textwrap.dedent() for the case when largest common by Serhiy Storchaka · 9 years ago
  3. ea4cb63 Issue #21827: Fixed textwrap.dedent() for the case when largest common by Serhiy Storchaka · 9 years ago
  4. 50ef0f4 Escaped backslashes in docstrings. by Serhiy Storchaka · 9 years ago
  5. 9f8a891 Escaped backslashes in docstrings. by Serhiy Storchaka · 9 years ago
  6. 72bd327 Issue #22687: Fixed some corner cases in breaking words in tetxtwrap. by Serhiy Storchaka · 9 years ago
  7. 3e4b528 Add shorten to __all_ (issues #18585 and #18725). by Serhiy Storchaka · 11 years ago
  8. acc9f3f Issue #18725: The textwrap module now supports truncating multiline text. by Serhiy Storchaka · 11 years ago
  9. c593056 Fix the default placeholder in textwrap.shorten() to be " [...]". by Antoine Pitrou · 11 years ago
  10. 389dec8 Issue #18585: Add :func:`textwrap.shorten` to collapse and truncate a piece of text to a given length. by Antoine Pitrou · 11 years ago
  11. 4fae8cd Close #13857: Added textwrap.indent() function (initial patch by Ezra Berch) by Nick Coghlan · 12 years ago
  12. d527259 #13152: Allow to specify a custom tabsize for expanding tabs in textwrap by Hynek Schlawack · 12 years ago
  13. a2250e6 merge from 3.2 - Fix closes Issue11439 Remove the SVN keywords from the code as it is no longer applicable in hg. Patch Contributed by Neil Muller. by Senthil Kumaran · 13 years ago
  14. 7c9719c Fix closes Issue11439 Remove the SVN keywords from the code as it is no longer applicable in hg. Patch Contributed by Neil Muller. by Senthil Kumaran · 13 years ago
  15. 274271d remove unused imports (closes #12432) by Benjamin Peterson · 13 years ago
  16. 4ac9ce4 Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,74896,74901,74903,74908,74912,74930,74933,74943,74946,74952-74955,75015,75019,75032,75068,75076,75095,75098,75102,75129,75139,75230 via svnmerge from by Benjamin Peterson · 15 years ago
  17. 7c59bc6 Issue #4163: textwrap module: allow word splitting on a hyphen preceded by a non-ASCII letter. by Antoine Pitrou · 15 years ago
  18. af265f4 Merged revisions 67531-67532,67538,67553-67554,67556-67557,67571,67574-67575,67579-67580,67591,67597,67608,67631 via svnmerge from by Georg Brandl · 15 years ago
  19. 5f8ced2 Merged revisions 62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,63022-63024,63026-63029,63031-63041,63043-63045,63047-63054,63056-63062 via svnmerge from by Alexandre Vassalotti · 16 years ago
  20. 81ee3ef Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,62463,62465-62466,62469,62474,62476-62478,62480,62485,62492,62497-62498,62500,62507,62513-62514,62516,62521,62531,62535,62545-62546,62548-62551,62553-62559,62569,62574,62577,62593,62595,62604-62606,62608,62616,62626-62627,62636,62638,62644-62645,62647-62648,62651-62653,62656,62661,62663,62680,62686-62687,62696,62699-62703,62711 via svnmerge from by Christian Heimes · 16 years ago
  21. fceab5a Merged revisions 60080-60089,60091-60093 via svnmerge from by Georg Brandl · 16 years ago
  22. 7f13e6b string.maketrans() now produces translation tables for bytes.translate() -- wrong module? by Georg Brandl · 17 years ago
  23. 9264ecd Quick fix for a new problem here -- using string.lowercase somehow caused by Guido van Rossum · 17 years ago
  24. c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 17 years ago
  25. e7ba495 Merged revisions 55631-55794 via svnmerge from by Guido van Rossum · 17 years ago
  26. aef90f4 Fix string test (was testing str twice). by Walter Dörwald · 17 years ago
  27. ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 17 years ago
  28. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  29. be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 17 years ago
  30. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  31. 8bfa893 textwrap now processes text chucks at O(n) speed instead of O(n**2). by Raymond Hettinger · 19 years ago
  32. 4040794 SF #1149508: ensure textwrap handles hyphenated numbers correctly, by Greg Ward · 19 years ago
  33. 0c26ab0 Removed unused line. by Raymond Hettinger · 19 years ago
  34. 6186410 SF #965425: fix so hyphenated words surrounded by punctuation are by Greg Ward · 20 years ago
  35. f0ba764 SF #847346: merge from release23-maint branch: remove misguided by Greg Ward · 20 years ago
  36. c11dbcd SF bug 797650: Infinite loop in textwrap.py by Raymond Hettinger · 21 years ago
  37. 523008c Update copyright dates. by Greg Ward · 21 years ago
  38. 52ae0a5 Remove comment about Unicode: SF #622831 was fixed loooong ago! by Greg Ward · 21 years ago
  39. c2659cf Whitespace normalization. by Tim Peters · 21 years ago
  40. 86e1790 Clarify the dedent() example a bit by indenting the input lines unevenly. by Greg Ward · 21 years ago
  41. 2557100 Minor clarification of dedent(). by Greg Ward · 21 years ago
  42. 478cd48 SF patch #598163 (Ville Vainio, vvainio@users.sourceforge.net): by Greg Ward · 21 years ago
  43. a409f7c SF #596434: tweak wordsep_re so the definition of an em-dash is by Greg Ward · 21 years ago
  44. 21820cd SF #726446: raise ValueError if width <= 0. by Greg Ward · 21 years ago
  45. a2ecabe Fix docstring typo by Andrew M. Kuchling · 21 years ago
  46. 4c6c9c4 Add __all__ (suggested by Raymond Hettinger). by Greg Ward · 21 years ago
  47. afd44de Hardcode the recognized whitespace characters to the US-ASCII whitespace by Greg Ward · 21 years ago
  48. 0e88c9f Tweak generation of unicode_whitespace_trans -- clearer, more by Greg Ward · 21 years ago
  49. ab73d46 Fix SF bug #622849: in _wrap_chunks(), ensure that leading whitespace in by Greg Ward · 21 years ago
  50. 2e74541 Fix SF bug #622831 (I think): add unicode_whitespace_trans class by Greg Ward · 21 years ago
  51. 4c486bc Add comment about inability to handle Unicode strings (hopefully a by Greg Ward · 22 years ago
  52. 78cc051 Fix copyright date: the core of this code actually dates back to 1999 by Greg Ward · 22 years ago
  53. eb287a2 Fix an endcase bug: initial_indent was ignored when the text was short by Guido van Rossum · 22 years ago
  54. e3bd104 Tweak wordsep_re again: this time to recognize an em-dash with by Greg Ward · 22 years ago
  55. cce4d67 Fix SF bug #596434: tweak wordsep_re so "--foo-bar" now splits by Greg Ward · 22 years ago
  56. c411dba Whitespace normalization. by Tim Peters · 22 years ago
  57. e807e57 Docstring improvements. In particular, added docstrings for the by Greg Ward · 22 years ago
  58. 62080be Took initial_tab and subsequent_tab away from the fill() method and by Greg Ward · 22 years ago
  59. cf02ac6 Allow the standalone wrap() and fill() functions to take arbitrary by Greg Ward · 22 years ago
  60. d34c959 Make 'width' an instance attribute rather than an argument to the wrap() by Greg Ward · 22 years ago
  61. 47df99d Make all of TextWrapper's options keyword args to the constructor. by Greg Ward · 22 years ago
  62. 698d9f0 Record copyright and author. by Greg Ward · 22 years ago
  63. 70c726a Use True/False instead of 1/0. by Greg Ward · 22 years ago
  64. f404c7e Remove islower() -- not used anymore. by Greg Ward · 22 years ago
  65. cb320eb Conform to the bloody coding standards: "def foo()" not "def foo ()". Yuck. by Greg Ward · 22 years ago
  66. 9b4864e Convert _fix_sentence_endings() to use a regex, and augment it to by Greg Ward · 22 years ago
  67. 62e4f3b Add fix_sentence_endings option to control whether we ensure that by Greg Ward · 22 years ago
  68. 0093582 Initial revision. Currently biased towards English in a fixed-width font, by Greg Ward · 22 years ago