| Server IP : 127.0.0.1 / Your IP : 216.73.216.109 Web Server : Apache/2.4.54 (Win64) OpenSSL/1.1.1q PHP/8.1.10 System : Windows NT DESKTOP-E5T4RUN 10.0 build 19045 (Windows 10) AMD64 User : SERVERWEB ( 0) PHP Version : 8.1.10 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/cygwin64/lib/python3.6/__pycache__/ |
Upload File : |
3
D1�aT � @ s� d Z ddlZddlZddlZddlZddlZddlZddlZddlm Z dddddd d
ddd
dddddddgZ
ejjej
dd�ZejdejejB �Zdd� Zdd� ZdPZd)d*� eed+�D �Zd,d-d.d/�ZdRd0d1�Zd2d3� Zd4d5� Zd6d7� ZG d8d� d�ZG d9d� de�ZdSd;d�Zi ZdTd<d�Z dUd=d �Z!i a"i a#d>a$dVd?d
�Z%dWd@d�Z&dXdAd�Z'dBd
� Z(dCd� Z)dDd� Z*dEd� Z+dFd� Z,dGd� Z-dHd� Z.dId� Z/e Z0dS )Ya� Internationalization and localization support.
This module provides internationalization (I18N) and localization (L10N)
support for your Python programs by providing an interface to the GNU gettext
message catalog library.
I18N refers to the operation by which a program is made aware of multiple
languages. L10N refers to the adaptation of your program, once
internationalized, to the local language and cultural habits.
� N)�ENOENT�NullTranslations�GNUTranslations�Catalog�find�translation�install�
textdomain�bindtextdomain�bind_textdomain_codeset�dgettext� dngettext�gettext�lgettext� ldgettext�
ldngettext� lngettext�ngettextZshare�localea�
(?P<WHITESPACES>[ \t]+) | # spaces and horizontal tabs
(?P<NUMBER>[0-9]+\b) | # decimal integer
(?P<NAME>n\b) | # only n is allowed
(?P<PARENTHESIS>[()]) |
(?P<OPERATOR>[-*/%+?:]|[><!]=?|==|&&|\|\|) | # !, *, /, %, +, -, <, >,
# <=, >=, ==, !=, &&, ||,
# ? :
# unary and bitwise ops
# not allowed
(?P<INVALID>\w+|.) # invalid token
c c sT xHt jt| �D ]8}|j}|dkr"q|j|�}|dkr@td| ��|V qW dV d S )N�WHITESPACES�INVALIDz invalid token in plural form: %s� )�re�finditer�_token_pattern� lastgroup�group�
ValueError)�plural�mo�kind�value� r"