summaryrefslogtreecommitdiff
path: root/Lib/textwrap.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-30620: Remove dead lines from textwrap.dedent (GH-2064)Jonathan Eunice2017-06-151-2/+0
* Issue #20491: The textwrap.TextWrapper class now honors non-breaking spaces.Serhiy Storchaka2016-10-251-14/+13
* Issue #21827: Fixed textwrap.dedent() for the case when largest commonSerhiy Storchaka2015-10-281-4/+8
|\
| * Issue #21827: Fixed textwrap.dedent() for the case when largest commonSerhiy Storchaka2015-10-281-4/+8
* | Escaped backslashes in docstrings.Serhiy Storchaka2015-04-031-3/+3
|\ \ | |/
| * Escaped backslashes in docstrings.Serhiy Storchaka2015-04-031-3/+3
* | Issue #22687: Fixed some corner cases in breaking words in tetxtwrap.Serhiy Storchaka2015-03-241-4/+19
|/
* Add shorten to __all_ (issues #18585 and #18725).Serhiy Storchaka2013-10-161-1/+1
* Issue #18725: The textwrap module now supports truncating multiline text.Serhiy Storchaka2013-10-151-39/+49
* Fix the default placeholder in textwrap.shorten() to be " [...]".Antoine Pitrou2013-08-161-2/+2
* Issue #18585: Add :func:`textwrap.shorten` to collapse and truncate a piece o...Antoine Pitrou2013-08-121-2/+51
* Close #13857: Added textwrap.indent() function (initial patch by EzraNick Coghlan2012-06-111-1/+20
* #13152: Allow to specify a custom tabsize for expanding tabs in textwrapHynek Schlawack2012-05-191-4/+9
* merge from 3.2 - Fix closes Issue11439 Remove the SVN keywords from the code ...Senthil Kumaran2011-07-281-2/+0
|\
| * Fix closes Issue11439 Remove the SVN keywords from the code as it is no longe...Senthil Kumaran2011-07-281-2/+0
* | remove unused imports (closes #12432)Benjamin Peterson2011-06-281-1/+1
|/
* Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,...Benjamin Peterson2009-10-041-3/+3
* Issue #4163: textwrap module: allow word splitting on a hyphen preceded by a ...Antoine Pitrou2008-12-131-1/+1
* Merged revisions 67531-67532,67538,67553-67554,67556-67557,67571,67574-67575,...Georg Brandl2008-12-071-1/+1
* Merged revisions 62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,...Alexandre Vassalotti2008-05-161-4/+24
* Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,...Christian Heimes2008-05-041-1/+1
* Merged revisions 60080-60089,60091-60093 via svnmerge fromGeorg Brandl2008-01-191-1/+6
* string.maketrans() now produces translation tables for bytes.translate() -- w...Georg Brandl2007-08-311-6/+1
* Quick fix for a new problem here -- using string.lowercase somehow causedGuido van Rossum2007-08-111-4/+3
* Merged revisions 56125-56153 via svnmerge fromGuido van Rossum2007-07-031-3/+3
* Merged revisions 55631-55794 via svnmerge fromGuido van Rossum2007-06-061-8/+0
* Fix string test (was testing str twice).Walter Dörwald2007-05-121-1/+1
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-021-2/+2
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-4/+8
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-1/+1
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-29/+46
* textwrap now processes text chucks at O(n) speed instead of O(n**2).Raymond Hettinger2005-07-151-9/+13
* SF #1149508: ensure textwrap handles hyphenated numbers correctly,Greg Ward2005-03-051-3/+4
* Removed unused line.Raymond Hettinger2005-01-031-1/+0
* SF #965425: fix so hyphenated words surrounded by punctuation areGreg Ward2004-06-031-3/+3
* SF #847346: merge from release23-maint branch: remove misguidedGreg Ward2004-05-131-10/+8
* SF bug 797650: Infinite loop in textwrap.pyRaymond Hettinger2003-08-301-1/+1
* Update copyright dates.Greg Ward2003-06-151-1/+9
* Remove comment about Unicode: SF #622831 was fixed loooong ago!Greg Ward2003-06-141-3/+0
* Whitespace normalization.Tim Peters2003-05-121-1/+1
* Clarify the dedent() example a bit by indenting the input lines unevenly.Greg Ward2003-05-081-4/+4
* Minor clarification of dedent().Greg Ward2003-05-081-3/+3
* SF patch #598163 (Ville Vainio, vvainio@users.sourceforge.net):Greg Ward2003-05-081-0/+42
* SF #596434: tweak wordsep_re so the definition of an em-dash isGreg Ward2003-05-071-1/+1
* SF #726446: raise ValueError if width <= 0.Greg Ward2003-05-071-0/+2
* Fix docstring typoAndrew M. Kuchling2003-02-141-1/+1
* Add __all__ (suggested by Raymond Hettinger).Greg Ward2003-02-031-3/+5
* Hardcode the recognized whitespace characters to the US-ASCII whitespaceGreg Ward2002-12-121-3/+12
* Tweak generation of unicode_whitespace_trans -- clearer, moreGreg Ward2002-12-111-2/+3
* Fix SF bug #622849: in _wrap_chunks(), ensure that leading whitespace inGreg Ward2002-12-091-2/+3