Hacked By AnonymousFox
U
e5d') � @ s� d Z ddddddddd d
ddgZd
dlZdZdZdZee ZdZed d ZdZ dZ
ee e
e Zddd�Zd
dl
Zd
dlmZ i ZG dd� de�ZG dd� ded�ZG dd� d�ZdS )an A collection of string constants.
Public module variables:
whitespace -- a string containing all ASCII whitespace
ascii_lowercase -- a string containing all ASCII lowercase letters
ascii_uppercase -- a string containing all ASCII uppercase letters
ascii_letters -- a string containing all ASCII letters
digits -- a string containing all ASCII decimal digits
hexdigits -- a string containing all ASCII hexadecimal digits
octdigits -- a string containing all ASCII octal digits
punctuation -- a string containing all ASCII punctuation characters
printable -- a string containing all ASCII characters considered printable
�
ascii_letters�ascii_lowercase�ascii_uppercase�capwords�digits� hexdigits� octdigits� printable�punctuation�
whitespace� Formatter�Template� Nz
ZabcdefghijklmnopqrstuvwxyzZABCDEFGHIJKLMNOPQRSTUVWXYZ�
0123456789ZabcdefZABCDEFZ01234567z !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~c C s |pd� dd� | �|�D ��S )a� capwords(s [,sep]) -> string
Split the argument into words using split, capitalize each
word using capitalize, and join the capitalized words using
join. If the optional second argument sep is absent or None,
runs of whitespace characters are replaced by a single space
and leading and trailing whitespace are removed, otherwise
sep is used to split and join the words.
� c s s | ]}|� � V qd S �N)�
capitalize)�.0�x� r �/usr/lib64/python3.8/string.py� <genexpr>0 s zcapwords.<locals>.<genexpr>)�join�split)�s�sepr r r r % s )�ChainMapc s e Zd ZdZ� fdd�Z� ZS )�_TemplateMetaclassa/
%(delim)s(?:
(?P<escaped>%(delim)s) | # Escape sequence of two delimiters
(?P<named>%(id)s) | # delimiter and a Python identifier
{(?P<braced>%(bid)s)} | # delimiter and a braced identifier
(?P<invalid>) # Other ill-formed delimiter exprs
)
c sb t t| ��|||� d|kr$| j}n$tjt�| j�| j| jp@| jd� }t� || j
tjB �| _d S )N�pattern)Zdelim�idZbid)�superr �__init__r �_re�escape� delimiter� idpattern�braceidpattern�compile�flags�VERBOSE)�cls�name�basesZdctr �� __class__r r r C s
�z_TemplateMetaclass.__init__)�__name__�
__module__�__qualname__r r �
__classcell__r r r, r r 9 s r c @ sJ e Zd ZdZdZdZdZejZ dd� Z
dd� Zefd d
�Z
efdd�ZdS )
r z.A string class for supporting $-substitutions.�$z(?a:[_a-z][_a-z0-9]*)Nc C s
|| _ d S r )�template)�selfr3 r r r r \ s zTemplate.__init__c C sd |� d�}| jd |� jdd�}|s.d}d}n"|td�|d d� �� }t|�}td||f ��d S )N�invalidT)�keepends� � ���z.Invalid placeholder in string: line %d, col %d)�startr3 �
splitlines�lenr �
ValueError)r4 �mo�i�lines�colno�linenor r r �_invalida s
�zTemplate._invalidc s: � t kr|� n|rt|� �� � �fdd�}�j�|�j�S )Nc sd | � d�p| � d�}|d k r(t� | �S | � d�d k r<�jS | � d�d k rT��| � td�j��d S �N�namedZbracedZescapedr5 z#Unrecognized named group in pattern)�group�strr# rC r= r �r>