✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server366.web-hosting.com ​🇻​♯➤ 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 67.223.118.204 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.217.131
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /opt/alt/python312/lib64/python3.12/lib2to3/pgen2/__pycache__//grammar.cpython-312.pyc
�

=��i����dZddlZddlmZGd�de�ZdZiZej�D]$Z	e	s�e	j�\ZZe
ee�ee<�&[	[[y)a�This module defines the data structures used to represent a grammar.

These are a bit arcane because they are derived from the data
structures used by Python's 'pgen' parser generator.

There's also a table here mapping operators to their names in the
token module; the Python tokenize module reports all operators as the
fallback token code OP, but the parser needs the actual token code.

�N�)�tokenc�4�eZdZdZd�Zd�Zd�Zd�Zd�Zd�Z	y)	�Grammara�	Pgen parsing tables conversion class.

    Once initialized, this class supplies the grammar tables for the
    parsing engine implemented by parse.py.  The parsing engine
    accesses the instance variables directly.  The class here does not
    provide initialization of the tables; several subclasses exist to
    do this (see the conv and pgen modules).

    The load() method reads the tables from a pickle file, which is
    much faster than the other ways offered by subclasses.  The pickle
    file is written by calling dump() (after loading the grammar
    tables using a subclass).  The report() method prints a readable
    representation of the tables to stdout, for debugging.

    The instance variables are as follows:

    symbol2number -- a dict mapping symbol names to numbers.  Symbol
                     numbers are always 256 or higher, to distinguish
                     them from token numbers, which are between 0 and
                     255 (inclusive).

    number2symbol -- a dict mapping numbers to symbol names;
                     these two are each other's inverse.

    states        -- a list of DFAs, where each DFA is a list of
                     states, each state is a list of arcs, and each
                     arc is a (i, j) pair where i is a label and j is
                     a state number.  The DFA number is the index into
                     this list.  (This name is slightly confusing.)
                     Final states are represented by a special arc of
                     the form (0, j) where j is its own state number.

    dfas          -- a dict mapping symbol numbers to (DFA, first)
                     pairs, where DFA is an item from the states list
                     above, and first is a set of tokens that can
                     begin this grammar rule (represented by a dict
                     whose values are always 1).

    labels        -- a list of (x, y) pairs where x is either a token
                     number or a symbol number, and y is either None
                     or a string; the strings are keywords.  The label
                     number is the index in this list; label numbers
                     are used to mark state transitions (arcs) in the
                     DFAs.

    start         -- the number of the grammar's start symbol.

    keywords      -- a dict mapping keyword strings to arc labels.

    tokens        -- a dict mapping token numbers to arc labels.

    c��i|_i|_g|_i|_dg|_i|_i|_i|_d|_y)N)r�EMPTY�)	�
symbol2number�
number2symbol�states�dfas�labels�keywords�tokens�symbol2label�start)�selfs �</opt/alt/python312/lib64/python3.12/lib2to3/pgen2/grammar.py�__init__zGrammar.__init__LsF�������������	�#�n�����
���������
�c��t|d�5}tj|j|tj�ddd�y#1swYyxYw)z)Dump the grammar tables to a pickle file.�wbN)�open�pickle�dump�__dict__�HIGHEST_PROTOCOL)r�filename�fs   rrzGrammar.dumpWs4��
�(�D�
!�Q��K�K��
�
�q�&�*A�*A�B�"�
!�
!�s�0A�Ac��t|d�5}tj|�}ddd�|jj	�y#1swY�%xYw)z+Load the grammar tables from a pickle file.�rbN)rr�loadr�update)rrr�ds    rr"zGrammar.load\s;��
�(�D�
!�Q����A��A�"��
�
���Q��"�
!�s�A�Ac�`�|jjtj|��y)z3Load the grammar tables from a pickle bytes object.N)rr#r�loads)r�pkls  rr&z
Grammar.loadsbs���
�
���V�\�\�#�.�/rc	���|j�}dD]'}t||t||�j���)|jdd|_|j
dd|_|j|_|S)z#
        Copy the grammar.
        )r
rr
rrrN)�	__class__�setattr�getattr�copyrrr)r�new�	dict_attrs   rr,zGrammar.copyfsh���n�n���4�I��C��G�D�)�$<�$A�$A�$C�D�4��[�[��^��
��[�[��^��
��J�J��	��
rc�^�ddlm}td�||j�td�||j�td�||j�td�||j
�td�||j�td|j�y	)
z:Dump the grammar tables to standard output, for debugging.r)�pprint�s2n�n2srr
rrN)r0�printr
rrr
rr)rr0s  r�reportzGrammar.reportssv��!�
�e���t�!�!�"�
�e���t�!�!�"�
�h���t�{�{��
�f�
��t�y�y��
�h���t�{�{��
�g�t�z�z�"rN)
�__name__�
__module__�__qualname__�__doc__rrr"r&r,r4�rrrrs'��3�j	�C�
 �0��
#rra
( LPAR
) RPAR
[ LSQB
] RSQB
: COLON
, COMMA
; SEMI
+ PLUS
- MINUS
* STAR
/ SLASH
| VBAR
& AMPER
< LESS
> GREATER
= EQUAL
. DOT
% PERCENT
` BACKQUOTE
{ LBRACE
} RBRACE
@ AT
@= ATEQUAL
== EQEQUAL
!= NOTEQUAL
<> NOTEQUAL
<= LESSEQUAL
>= GREATEREQUAL
~ TILDE
^ CIRCUMFLEX
<< LEFTSHIFT
>> RIGHTSHIFT
** DOUBLESTAR
+= PLUSEQUAL
-= MINEQUAL
*= STAREQUAL
/= SLASHEQUAL
%= PERCENTEQUAL
&= AMPEREQUAL
|= VBAREQUAL
^= CIRCUMFLEXEQUAL
<<= LEFTSHIFTEQUAL
>>= RIGHTSHIFTEQUAL
**= DOUBLESTAREQUAL
// DOUBLESLASH
//= DOUBLESLASHEQUAL
-> RARROW
:= COLONEQUAL
)r8r�r�objectr�	opmap_raw�opmap�
splitlines�line�split�op�namer+r9rr�<module>rCsp��	���j#�f�j#�^1
�	�f	��� � �"�D���:�:�<���D��E�4�(��b�	�
#�	�"�dr


Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
4 May 2026 7.19 PM
root / linksafe
0755
__init__.cpython-312.opt-1.pyc
0.188 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
__init__.cpython-312.opt-2.pyc
0.159 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
__init__.cpython-312.pyc
0.188 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
conv.cpython-312.opt-1.pyc
9.687 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
conv.cpython-312.opt-2.pyc
7.294 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
conv.cpython-312.pyc
11.497 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
driver.cpython-312.opt-1.pyc
7.854 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
driver.cpython-312.opt-2.pyc
6.929 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
driver.cpython-312.pyc
7.922 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
grammar.cpython-312.opt-1.pyc
6.854 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
grammar.cpython-312.opt-2.pyc
3.811 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
grammar.cpython-312.pyc
6.854 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
literals.cpython-312.opt-1.pyc
2.096 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
literals.cpython-312.opt-2.pyc
2.024 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
literals.cpython-312.pyc
2.546 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
parse.cpython-312.opt-1.pyc
8.511 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
parse.cpython-312.opt-2.pyc
5.412 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
parse.cpython-312.pyc
8.533 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
pgen.cpython-312.opt-1.pyc
17.315 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
pgen.cpython-312.opt-2.pyc
17.315 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
pgen.cpython-312.pyc
18.279 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
token.cpython-312.opt-1.pyc
2.205 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
token.cpython-312.opt-2.pyc
2.16 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
token.cpython-312.pyc
2.205 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
tokenize.cpython-312.opt-1.pyc
20.336 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
tokenize.cpython-312.opt-2.pyc
16.567 KB
20 Apr 2026 7.46 AM
root / linksafe
0644
tokenize.cpython-312.pyc
20.46 KB
20 Apr 2026 7.46 AM
root / linksafe
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF