aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/textwrap.py
Commit message (Expand)AuthorAge
* Merged revisions 75231 via svnmerge fromBenjamin Peterson2009-10-04
* Issue #4163: textwrap module: allow word splitting on a hyphen preceded by a ...Antoine Pitrou2008-12-13
* Merged revisions 67531-67532,67538,67553-67554,67556-67557,67571,67574-67575,...Georg Brandl2008-12-07
* Merged revisions 62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,...Alexandre Vassalotti2008-05-16
* Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,...Christian Heimes2008-05-04
* Merged revisions 60080-60089,60091-60093 via svnmerge fromGeorg Brandl2008-01-19
* string.maketrans() now produces translation tables for bytes.translate() -- w...Georg Brandl2007-08-31
* Quick fix for a new problem here -- using string.lowercase somehow causedGuido van Rossum2007-08-11
* Merged revisions 56125-56153 via svnmerge fromGuido van Rossum2007-07-03
* Merged revisions 55631-55794 via svnmerge fromGuido van Rossum2007-06-06
* Fix string test (was testing str twice).Walter Dörwald2007-05-12
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-02
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-27
* Fix most trivially-findable print statements.Guido van Rossum2007-02-09
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-11
* textwrap now processes text chucks at O(n) speed instead of O(n**2).Raymond Hettinger2005-07-15
* SF #1149508: ensure textwrap handles hyphenated numbers correctly,Greg Ward2005-03-05
* Removed unused line.Raymond Hettinger2005-01-03
* SF #965425: fix so hyphenated words surrounded by punctuation areGreg Ward2004-06-03
* SF #847346: merge from release23-maint branch: remove misguidedGreg Ward2004-05-13
* SF bug 797650: Infinite loop in textwrap.pyRaymond Hettinger2003-08-30
* Update copyright dates.Greg Ward2003-06-15
* Remove comment about Unicode: SF #622831 was fixed loooong ago!Greg Ward2003-06-14
* Whitespace normalization.Tim Peters2003-05-12
* Clarify the dedent() example a bit by indenting the input lines unevenly.Greg Ward2003-05-08
* Minor clarification of dedent().Greg Ward2003-05-08
* SF patch #598163 (Ville Vainio, vvainio@users.sourceforge.net):Greg Ward2003-05-08
* SF #596434: tweak wordsep_re so the definition of an em-dash isGreg Ward2003-05-07
* SF #726446: raise ValueError if width <= 0.Greg Ward2003-05-07
* Fix docstring typoAndrew M. Kuchling2003-02-14
* Add __all__ (suggested by Raymond Hettinger).Greg Ward2003-02-03
* Hardcode the recognized whitespace characters to the US-ASCII whitespaceGreg Ward2002-12-12
* Tweak generation of unicode_whitespace_trans -- clearer, moreGreg Ward2002-12-11
* Fix SF bug #622849: in _wrap_chunks(), ensure that leading whitespace inGreg Ward2002-12-09
* Fix SF bug #622831 (I think): add unicode_whitespace_trans classGreg Ward2002-12-09
* Add comment about inability to handle Unicode strings (hopefully aGreg Ward2002-10-22
* Fix copyright date: the core of this code actually dates back to 1999Greg Ward2002-10-13
* Fix an endcase bug: initial_indent was ignored when the text was shortGuido van Rossum2002-10-02
* Tweak wordsep_re again: this time to recognize an em-dash withGreg Ward2002-08-22
* Fix SF bug #596434: tweak wordsep_re so "--foo-bar" now splitsGreg Ward2002-08-22
* Whitespace normalization.Tim Peters2002-07-16
* Docstring improvements. In particular, added docstrings for theGreg Ward2002-07-04
* Took initial_tab and subsequent_tab away from the fill() method andGreg Ward2002-06-10
* Allow the standalone wrap() and fill() functions to take arbitraryGreg Ward2002-06-10
* Make 'width' an instance attribute rather than an argument to the wrap()Greg Ward2002-06-10
* Make all of TextWrapper's options keyword args to the constructor.Greg Ward2002-06-09
* Record copyright and author.Greg Ward2002-06-07
* Use True/False instead of 1/0.Greg Ward2002-06-07
* Remove islower() -- not used anymore.Greg Ward2002-06-07
* Conform to the bloody coding standards: "def foo()" not "def foo ()".Greg Ward2002-06-07