Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /lib/python3.12/__pycache__/ |
Upload File : |
�
:5j
. � �� � d Z g d�ZddlZdZdZdZeez ZdZedz d z Zd
Z dZ
eez e
z ez Zdd�Zddl
Zdd
lmZ i Z G d� d� Zej) � G d� d� Zy)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
�abcdefghijklmnopqrstuvwxyz�ABCDEFGHIJKLMNOPQRSTUVWXYZ�
0123456789�abcdef�ABCDEF�01234567z !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~c �z � |xs dj t t j | j |� � � 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.
� )�join�map�str�
capitalize�split)�s�seps �/usr/lib/python3.12/string.pyr r % s, � �
�J�3���S���������>�?�?� )�ChainMapc �r � � e Zd ZdZdZdZdZej Z � fd�Z
d� Zd� Ze
fd�Ze
fd �Zd
� Zd� Z� xZS )r
z.A string class for supporting $-substitutions.�$z(?a:[_a-z][_a-z0-9]*)Nc �l �� t �| � � d| j v r
| j }nTt j
| j � }| j }| j xs | j }d|� d|� d|� d|� d� }t j || j t j z � | _ y )N�patternz
z(?:
(?P<escaped>zC) | # Escape sequence of two delimiters
(?P<named>zJ) | # delimiter and a Python identifier
{(?P<braced>z�)} | # delimiter and a braced identifier
(?P<invalid>) # Other ill-formed delimiter exprs
)
)�super�__init_subclass__�__dict__r$ �_re�escape� delimiter� idpattern�braceidpattern�compile�flags�VERBOSE)�clsr$ �delim�id�bid� __class__s �r r&