summaryrefslogtreecommitdiff
path: root/Lib/textwrap.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Issue #8767: Restore building with --disable-unicode.Martin v. Löwis2012-05-201-2/+10
* Optimize optimization and fix method name in docstring.Georg Brandl2009-09-181-3/+3
* Follow-up to r67746 in order to restore backwards-compatibility forGeorg Brandl2008-12-271-7/+19
* Issue #4163: Use unicode-friendly word splitting in the textwrap functions wh...Antoine Pitrou2008-12-131-6/+8
* #4544: add `dedent` to textwrap.__all__.Georg Brandl2008-12-051-1/+1
* Remove assignment to True/False to silence the SyntaxWarning that is triggeredBrett Cannon2008-08-011-5/+5
* #2659: add ``break_on_hyphens`` to TextWrapper.Georg Brandl2008-05-111-2/+21
* Issue 2635: fix bug in the fix_sentence_endings option to textwrap.fill.Mark Dickinson2008-04-251-0/+1
* Fix #1146: TextWrap vs words 1-character shorter than the width.Georg Brandl2008-01-191-1/+6
* Patch #1581073: add a flag to textwrap that prevents the dropping ofGeorg Brandl2007-03-131-4/+8
* Whitespace normalization.Tim Peters2006-06-111-4/+4
* Bug #1361643: fix textwrap.dedent() so it handles tabs appropriately,Greg Ward2006-06-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
* Fix SF bug #622831 (I think): add unicode_whitespace_trans classGreg Ward2002-12-091-1/+8
* Add comment about inability to handle Unicode strings (hopefully aGreg Ward2002-10-221-0/+3
* Fix copyright date: the core of this code actually dates back to 1999Greg Ward2002-10-131-2/+2
* Fix an endcase bug: initial_indent was ignored when the text was shortGuido van Rossum2002-10-021-2/+3
* Tweak wordsep_re again: this time to recognize an em-dash withGreg Ward2002-08-221-1/+1
* Fix SF bug #596434: tweak wordsep_re so "--foo-bar" now splitsGreg Ward2002-08-221-1/+1
* Whitespace normalization.Tim Peters2002-07-161-3/+3
* Docstring improvements. In particular, added docstrings for theGreg Ward2002-07-041-10/+27
* Took initial_tab and subsequent_tab away from the fill() method andGreg Ward2002-06-101-22/+34
* Allow the standalone wrap() and fill() functions to take arbitraryGreg Ward2002-06-101-4/+6
* Make 'width' an instance attribute rather than an argument to the wrap()Greg Ward2002-06-101-31/+32
* Make all of TextWrapper's options keyword args to the constructor.Greg Ward2002-06-091-5/+9
* Record copyright and author.Greg Ward2002-06-071-0/+4
* Use True/False instead of 1/0.Greg Ward2002-06-071-5/+5
* Remove islower() -- not used anymore.Greg Ward2002-06-071-6/+0
* Conform to the bloody coding standards: "def foo()" not "def foo ()".Greg Ward2002-06-071-10/+10
* Convert _fix_sentence_endings() to use a regex, and augment it toGreg Ward2002-06-071-8/+8