index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
textwrap.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Remove assignment to True/False to silence the SyntaxWarning that is triggered
Brett Cannon
2008-08-01
1
-5/+5
*
#2659: add ``break_on_hyphens`` to TextWrapper.
Georg Brandl
2008-05-11
1
-2/+21
*
Issue 2635: fix bug in the fix_sentence_endings option to textwrap.fill.
Mark Dickinson
2008-04-25
1
-0/+1
*
Fix #1146: TextWrap vs words 1-character shorter than the width.
Georg Brandl
2008-01-19
1
-1/+6
*
Patch #1581073: add a flag to textwrap that prevents the dropping of
Georg Brandl
2007-03-13
1
-4/+8
*
Whitespace normalization.
Tim Peters
2006-06-11
1
-4/+4
*
Bug #1361643: fix textwrap.dedent() so it handles tabs appropriately,
Greg Ward
2006-06-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
*
Add __all__ (suggested by Raymond Hettinger).
Greg Ward
2003-02-03
1
-3/+5
*
Hardcode the recognized whitespace characters to the US-ASCII whitespace
Greg Ward
2002-12-12
1
-3/+12
*
Tweak generation of unicode_whitespace_trans -- clearer, more
Greg Ward
2002-12-11
1
-2/+3
*
Fix SF bug #622849: in _wrap_chunks(), ensure that leading whitespace in
Greg Ward
2002-12-09
1
-2/+3
*
Fix SF bug #622831 (I think): add unicode_whitespace_trans class
Greg Ward
2002-12-09
1
-1/+8
*
Add comment about inability to handle Unicode strings (hopefully a
Greg Ward
2002-10-22
1
-0/+3
*
Fix copyright date: the core of this code actually dates back to 1999
Greg Ward
2002-10-13
1
-2/+2
*
Fix an endcase bug: initial_indent was ignored when the text was short
Guido van Rossum
2002-10-02
1
-2/+3
*
Tweak wordsep_re again: this time to recognize an em-dash with
Greg Ward
2002-08-22
1
-1/+1
*
Fix SF bug #596434: tweak wordsep_re so "--foo-bar" now splits
Greg Ward
2002-08-22
1
-1/+1
*
Whitespace normalization.
Tim Peters
2002-07-16
1
-3/+3
*
Docstring improvements. In particular, added docstrings for the
Greg Ward
2002-07-04
1
-10/+27
*
Took initial_tab and subsequent_tab away from the fill() method and
Greg Ward
2002-06-10
1
-22/+34
*
Allow the standalone wrap() and fill() functions to take arbitrary
Greg Ward
2002-06-10
1
-4/+6
*
Make 'width' an instance attribute rather than an argument to the wrap()
Greg Ward
2002-06-10
1
-31/+32
*
Make all of TextWrapper's options keyword args to the constructor.
Greg Ward
2002-06-09
1
-5/+9
*
Record copyright and author.
Greg Ward
2002-06-07
1
-0/+4
*
Use True/False instead of 1/0.
Greg Ward
2002-06-07
1
-5/+5
*
Remove islower() -- not used anymore.
Greg Ward
2002-06-07
1
-6/+0
*
Conform to the bloody coding standards: "def foo()" not "def foo ()".
Greg Ward
2002-06-07
1
-10/+10
*
Convert _fix_sentence_endings() to use a regex, and augment it to
Greg Ward
2002-06-07
1
-8/+8
*
Add fix_sentence_endings option to control whether we ensure that
Greg Ward
2002-06-07
1
-16/+25
*
Initial revision. Currently biased towards English in a fixed-width font,
Greg Ward
2002-06-07
1
-0/+239