Hacked By AnonymousFox
�
��fh@ c @ s� d Z d d l Z d d d d d g Z d Z Gd d � d � Z d
d d � Z d
d d � Z e j d
e j � Z e j d e j � Z
d d � Z e d d � Z
e d k r� e e d � � n d S( u Text wrapping and filling.
i Nu TextWrapperu wrapu fillu dedentu indentu
c B s� | Ee Z d Z d Z i Z e d � Z x e D] Z e e e e � <q/ We j
d � Z e j
d � Z e j
d � Z
d d d d d d d d d d d d
�
Z d d � Z d
d � Z d d � Z d d � Z d d � Z d d � Z d d � Z d S( u TextWrapperu}
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 0 .. 'tabsize' spaces, depending on its position
in its line. If false, each tab is treated as a single character.
tabsize (default: 8)
Expand tabs in input text to 0 .. 'tabsize' spaces, unless
'expand_tabs' is false.
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'.
break_on_hyphens (default: true)
Allow breaking hyphenated words. If true, wrapping will occur
preferably on whitespaces and right after hyphens part of
compound words.
drop_whitespace (default: true)
Drop leading and trailing whitespace from lines.
u uL (\s+|[^\s\w]*\w+[^0-9\W]-(?=\w+[^0-9\W])|(?<=[\w\!\"\'\&\.\,\?])-{2,}(?=\w))u (\s+)u [a-z][\.\!\?][\"\']?\ZiF u i c C s^ | | _ | | _ | | _ | | _ | | _ | | _ | | _ | | _ | | _ |
| _ d S( N(
u widthu initial_indentu subsequent_indentu expand_tabsu replace_whitespaceu fix_sentence_endingsu break_long_wordsu drop_whitespaceu break_on_hyphensu tabsize( u selfu widthu initial_indentu subsequent_indentu expand_tabsu replace_whitespaceu fix_sentence_endingsu break_long_wordsu drop_whitespaceu break_on_hyphensu tabsize( ( u- /opt/alt/python33/lib64/python3.3/textwrap.pyu __init__a s u TextWrapper.__init__c C s@ | j r | j | j � } n | j r<