Hacked By AnonymousFox
�
c��fM � �� � d Z ddlZg d�ZdZ G d� d� � Zdd�Zdd �Zd
� Z ej dej � � Z
ej dej � � Zd
� Zdd�Z
edk r e ed� � � � dS dS )zText wrapping and filling.
� N)�TextWrapper�wrap�fill�dedent�indent�shortenz
c � � e Zd ZdZe� eee� � ed� � � � Z dZ
dZd ej
e� � z Zdedd� z Z ej d e
eeed
�z ej � � Z[
[[ ej dez � � Z[ ej d� � Z dddd�d�Zd� Zd� Zd� Zd� Zd� Zd� Zd� Zd� ZdS )r a
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.
max_lines (default: None)
Truncate wrapped lines.
placeholder (default: ' [...]')
Append to the last line of truncated text.
� z[\w!"\'&.,?]z[^\d\W]z[%s]z[^� Na�
( # any whitespace
%(ws)s+
| # em-dash between words
(?<=%(wp)s) -{2,} (?=\w)
| # word, possibly hyphenated
%(nws)s+? (?:
# hyphenated word
-(?: (?<=%(lt)s{2}-) | (?<=%(lt)s-%(lt)s-))
(?= %(lt)s -? %(lt)s)
| # end of word
(?=%(ws)s|\Z)
| # em-dash
(?<=%(wp)s) (?=-{2,}\w)
)
))�wp�lt�ws�nwsz(%s+)z[a-z][\.\!\?][\"\']?\Z�F � TF� z [...])� max_lines�placeholderc � � || _ || _ || _ || _ || _ || _ || _ || _ | | _ |
| _ || _
|| _ d S �N)�width�initial_indent�subsequent_indent�expand_tabs�replace_whitespace�fix_sentence_endings�break_long_words�drop_whitespace�break_on_hyphens�tabsizer r )
�selfr r r r r r r r r r r r s
�//opt/alt/python311/lib64/python3.11/textwrap.py�__init__zTextWrapper.__init__p sg � � ��
�,���!2���&���"4���$8��!� 0���.��� 0������"���&����� c � � | j r|� | j � � }| j r|� | j � � }|S )z�_munge_whitespace(text : string) -> string
Munge whitespace in text: expand tabs and convert all other
whitespace characters to spaces. Eg. " foo\tbar\n\nbaz"
becomes " foo bar baz".
)r �
expandtabsr r � translate�unicode_whitespace_trans�r! �texts r"