Object for wrapping/filling text. The public interface consists of
the wrap() and fill() methods; the other methods are just there for
subclasses to override in order to tweak the default behaviour.
If you want to completely replace the main wrapping algorithm,
you'll probably have to override _wrap_chunks(). Several instance attributes control various aspects of wrapping:
width (default: 70)
the maximum width of wrapped lines (unless break_long_words
is false)
initial_indent (default: "")
string that will be prepended to the first line of wrapped
output. Counts towards the line's width.
subsequent_indent (default: "")
string that will be prepended to all lines save the first
of wrapped output; also counts towards each line's width.
expand_tabs (default: true)
Expand tabs in input text to spaces before further processing.
Each tab will become 1 .. 8 spaces, depending on its position in
its line. If false, each tab is treated as a single character.
replace_whitespace (default: true)
Replace all whitespace characters in the input text by spaces
after tab expansion. Note that if expand_tabs is false and
replace_whitespace is true, every tab will be converted to a
single space!
fix_sentence_endings (default: false)
Ensure that sentence-ending punctuation is always followed
by two spaces. Off by default because the algorithm is
(unavoidably) imperfect.
break_long_words (default: true)
Break words longer than width . If false, those words will not
be broken, and some lines might be longer than width .
Methods
|
|
__init__
_fix_sentence_endings
_handle_long_word
_munge_whitespace
_split
_wrap_chunks
fill
wrap
|
|
__init__
|
__init__ (
self,
width=70,
initial_indent="",
subsequent_indent="",
expand_tabs=True,
replace_whitespace=True,
fix_sentence_endings=False,
break_long_words=True,
)
|
|
_fix_sentence_endings
|
_fix_sentence_endings ( self, chunks )
_fix_sentence_endings(chunks : [string])
Correct for sentence endings buried in chunks . Eg. when the
original text contains "... foo.
Bar ...", munge_whitespace()
and split() will convert that to [..., "foo.", " ", "Bar", ...]
which has one too few spaces; this method simply changes the one
space to two.
|
|
_handle_long_word
|
_handle_long_word (
self,
chunks,
cur_line,
cur_len,
width,
)
_handle_long_word(chunks : [string],
cur_line : [string],
cur_len : int, width : int) Handle a chunk of text (most likely a word, not whitespace) that
is too long to fit in any line.
|
|
_munge_whitespace
|
_munge_whitespace ( self, text )
_munge_whitespace(text : string) -> string
Munge whitespace in text: expand tabs and convert all other
whitespace characters to spaces. Eg. " foo bar
baz"
becomes " foo bar baz".
|
|
_split
|
_split ( self, text )
_split(text : string) -> [string]
Split the text to wrap into indivisible chunks. Chunks are
not quite the same as words; see wrap_chunks() for full
details. As an example, the text
Look, goof-ball -- use the -b option!
breaks into the following chunks:
Look, , ' ', goof- , ball , ' ', '--', ' ',
use , ' ', the , ' ', -b , ' ', option!
|
|
_wrap_chunks
|
_wrap_chunks ( self, chunks )
Wrap a sequence of text chunks and return a list of lines of
length self.width or less. (If break_long_words is false,
some lines may be longer than this.) Chunks correspond roughly
to words and the whitespace between them: each chunk is
indivisible (modulo break_long_words ), but a line break can
come between any two chunks. Chunks should not have internal
whitespace; ie. a chunk is either all whitespace or a "word".
Whitespace chunks will be removed from the beginning and end of
lines, but apart from that whitespace is preserved.
Exceptions
|
|
ValueError( "invalid width %r (must be > 0)" % self.width )
|
|
|
fill
|
fill ( self, text )
fill(text : string) -> string
Reformat the single paragraph in text to fit in lines of no
more than self.width columns, and return a new string
containing the entire wrapped paragraph.
|
|
wrap
|
wrap ( self, text )
wrap(text : string) -> [string]
Reformat the single paragraph in text so it fits in lines of
no more than self.width columns, and return a list of wrapped
lines. Tabs in text are expanded with string.expandtabs(),
and all other whitespace characters (including newline) are
converted to space.
|
|