| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-107369: optimize textwrap.indent() (#107374) | Inada Naoki | 2023-07-29 | 1 | -7/+13 |
|
|
* | bpo-46544: Do not leak `x` and `uspace` in textwrap.TextWrapper (GH-30955) | Nikita Sobolev | 2022-01-27 | 1 | -4/+1 |
|
|
* | bpo-28660: Make TextWrapper break long words on hyphens (GH-22721) | Irit Katriel | 2020-10-18 | 1 | -2/+10 |
|
|
* | bpo-30754: Document textwrap.dedent blank line behavior. (GH-14469) | tmblweed | 2019-06-30 | 1 | -3/+3 |
|
|
* | bpo-30620: Remove dead lines from textwrap.dedent (GH-2064) | Jonathan Eunice | 2017-06-16 | 1 | -2/+0 |
|
|
* | Issue #20491: The textwrap.TextWrapper class now honors non-breaking spaces. | Serhiy Storchaka | 2016-10-25 | 1 | -14/+13 |
|
|
* | Issue #21827: Fixed textwrap.dedent() for the case when largest common | Serhiy Storchaka | 2015-10-28 | 1 | -4/+8 |
|\ |
|
| * | Issue #21827: Fixed textwrap.dedent() for the case when largest common | Serhiy Storchaka | 2015-10-28 | 1 | -4/+8 |
|
|
* | | Escaped backslashes in docstrings. | Serhiy Storchaka | 2015-04-03 | 1 | -3/+3 |
|\ \
| |/ |
|
| * | Escaped backslashes in docstrings. | Serhiy Storchaka | 2015-04-03 | 1 | -3/+3 |
|
|
* | | Issue #22687: Fixed some corner cases in breaking words in tetxtwrap. | Serhiy Storchaka | 2015-03-24 | 1 | -4/+19 |
|/ |
|
* | Add shorten to __all_ (issues #18585 and #18725). | Serhiy Storchaka | 2013-10-16 | 1 | -1/+1 |
|
|
* | Issue #18725: The textwrap module now supports truncating multiline text. | Serhiy Storchaka | 2013-10-15 | 1 | -39/+49 |
|
|
* | Fix the default placeholder in textwrap.shorten() to be " [...]". | Antoine Pitrou | 2013-08-16 | 1 | -2/+2 |
|
|
* | Issue #18585: Add :func:`textwrap.shorten` to collapse and truncate a piece o... | Antoine Pitrou | 2013-08-12 | 1 | -2/+51 |
|
|
* | Close #13857: Added textwrap.indent() function (initial patch by Ezra | Nick Coghlan | 2012-06-11 | 1 | -1/+20 |
|
|
* | #13152: Allow to specify a custom tabsize for expanding tabs in textwrap | Hynek Schlawack | 2012-05-19 | 1 | -4/+9 |
|
|
* | merge from 3.2 - Fix closes Issue11439 Remove the SVN keywords from the code ... | Senthil Kumaran | 2011-07-28 | 1 | -2/+0 |
|\ |
|
| * | Fix closes Issue11439 Remove the SVN keywords from the code as it is no longe... | Senthil Kumaran | 2011-07-28 | 1 | -2/+0 |
|
|
* | | remove unused imports (closes #12432) | Benjamin Peterson | 2011-06-28 | 1 | -1/+1 |
|/ |
|
* | Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,... | Benjamin Peterson | 2009-10-04 | 1 | -3/+3 |
|
|
* | Issue #4163: textwrap module: allow word splitting on a hyphen preceded by a ... | Antoine Pitrou | 2008-12-13 | 1 | -1/+1 |
|
|
* | Merged revisions 67531-67532,67538,67553-67554,67556-67557,67571,67574-67575,... | Georg Brandl | 2008-12-07 | 1 | -1/+1 |
|
|
* | Merged revisions 62998-63003,63005-63006,63009-63012,63014-63017,63019-63020,... | Alexandre Vassalotti | 2008-05-16 | 1 | -4/+24 |
|
|
* | Merged revisions 62425-62429,62434-62436,62441,62444,62446-62448,62450-62455,... | Christian Heimes | 2008-05-04 | 1 | -1/+1 |
|
|
* | Merged revisions 60080-60089,60091-60093 via svnmerge from | Georg Brandl | 2008-01-19 | 1 | -1/+6 |
|
|
* | string.maketrans() now produces translation tables for bytes.translate() -- w... | Georg Brandl | 2007-08-31 | 1 | -6/+1 |
|
|
* | Quick fix for a new problem here -- using string.lowercase somehow caused | Guido van Rossum | 2007-08-11 | 1 | -4/+3 |
|
|
* | Merged revisions 56125-56153 via svnmerge from | Guido van Rossum | 2007-07-03 | 1 | -3/+3 |
|
|
* | Merged revisions 55631-55794 via svnmerge from | Guido van Rossum | 2007-06-06 | 1 | -8/+0 |
|
|
* | Fix string test (was testing str twice). | Walter Dörwald | 2007-05-12 | 1 | -1/+1 |
|
|
* | Rip out all the u"..." literals and calls to unicode(). | Guido van Rossum | 2007-05-02 | 1 | -2/+2 |
|
|
* | Merged revisions 53952-54987 via svnmerge from | Guido van Rossum | 2007-04-27 | 1 | -4/+8 |
|
|
* | Fix most trivially-findable print statements. | Guido van Rossum | 2007-02-09 | 1 | -1/+1 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -29/+46 |
|
|
* | textwrap now processes text chucks at O(n) speed instead of O(n**2). | Raymond Hettinger | 2005-07-15 | 1 | -9/+13 |
|
|
* | SF #1149508: ensure textwrap handles hyphenated numbers correctly, | Greg Ward | 2005-03-05 | 1 | -3/+4 |
|
|
* | Removed unused line. | Raymond Hettinger | 2005-01-03 | 1 | -1/+0 |
|
|
* | SF #965425: fix so hyphenated words surrounded by punctuation are | Greg Ward | 2004-06-03 | 1 | -3/+3 |
|
|
* | SF #847346: merge from release23-maint branch: remove misguided | Greg Ward | 2004-05-13 | 1 | -10/+8 |
|
|
* | SF bug 797650: Infinite loop in textwrap.py | Raymond Hettinger | 2003-08-30 | 1 | -1/+1 |
|
|
* | Update copyright dates. | Greg Ward | 2003-06-15 | 1 | -1/+9 |
|
|
* | Remove comment about Unicode: SF #622831 was fixed loooong ago! | Greg Ward | 2003-06-14 | 1 | -3/+0 |
|
|
* | Whitespace normalization. | Tim Peters | 2003-05-12 | 1 | -1/+1 |
|
|
* | Clarify the dedent() example a bit by indenting the input lines unevenly. | Greg Ward | 2003-05-08 | 1 | -4/+4 |
|
|
* | Minor clarification of dedent(). | Greg Ward | 2003-05-08 | 1 | -3/+3 |
|
|
* | SF patch #598163 (Ville Vainio, vvainio@users.sourceforge.net): | Greg Ward | 2003-05-08 | 1 | -0/+42 |
|
|
* | SF #596434: tweak wordsep_re so the definition of an em-dash is | Greg Ward | 2003-05-07 | 1 | -1/+1 |
|
|
* | SF #726446: raise ValueError if width <= 0. | Greg Ward | 2003-05-07 | 1 | -0/+2 |
|
|
* | Fix docstring typo | Andrew M. Kuchling | 2003-02-14 | 1 | -1/+1 |
|
|