$76 GRAYBYTE WORDPRESS FILE MANAGER $85

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 172.67.217.254 | ADMIN IP 216.73.216.180
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/opt/alt/python27/lib64/python2.7/lib2to3/pgen2/

HOME
Current File : /opt/alt/python27/lib64/python2.7/lib2to3/pgen2//conv.pyc
�
�V~gc@sEdZddlZddlmZmZdejfd��YZdS(s�Convert graminit.[ch] spit out by pgen to Python code.

Pgen is the Python parser generator.  It is useful to quickly create a
parser from a grammar file in Python's grammar notation.  But I don't
want my parsers to be written in C (yet), so I'm translating the
parsing tables to Python data structures and writing a Python parse
engine.

Note that the token numbers are constants determined by the standard
Python tokenizer.  The standard token module defines these numbers and
their names (the names are not used much).  The token numbers are
hardcoded into the Python tokenizer and into pgen.  A Python
implementation of the Python tokenizer is also available, in the
standard tokenize module.

On the other hand, symbol numbers (representing the grammar's
non-terminals) are assigned by pgen based on the actual grammar
input.

Note: this module is pretty much obsolete; the pgen module generates
equivalent grammar tables directly from the Grammar.txt input file
without having to invoke the Python pgen C program.

i����N(tgrammarttokent	ConvertercBs2eZdZd�Zd�Zd�Zd�ZRS(s2Grammar subclass that reads classic pgen output files.

    The run() method reads the tables as produced by the pgen parser
    generator, typically contained in two C files, graminit.h and
    graminit.c.  The other methods are for internal use only.

    See the base class for more documentation.

    cCs(|j|�|j|�|j�dS(s<Load the grammar tables from the text files written by pgen.N(tparse_graminit_htparse_graminit_ct
finish_off(tselft
graminit_ht
graminit_c((s7/opt/alt/python27/lib64/python2.7/lib2to3/pgen2/conv.pytrun/s

c	Csyt|�}Wn#tk
r5}d||fGHtSXi|_i|_d}x�|D]�}|d7}tjd|�}|r�|j�r�d|||j�fGHqU|j�\}}t	|�}||jks�t
�||jks�t
�||j|<||j|<qUWtS(s�Parse the .h file written by pgen.  (Internal)

        This file is a sequence of #define statements defining the
        nonterminals of the grammar as numbers.  We build two tables
        mapping the numbers to names and back.

        sCan't open %s: %siis^#define\s+(\w+)\s+(\d+)$s%s(%s): can't parse %s(topentIOErrortFalset
symbol2numbert
number2symboltretmatchtstriptgroupstinttAssertionErrortTrue(	Rtfilenametfterrtlinenotlinetmotsymboltnumber((s7/opt/alt/python27/lib64/python2.7/lib2to3/pgen2/conv.pyR5s*		

	
c!Cs�	yt|�}Wn#tk
r5}d||fGHtSXd}|d|j�}}|dksqt||f��|d|j�}}|dks�t||f��|d|j�}}i}g}x�|jd�r�xC|jd�r tjd|�}|st||f��tt	|j
��\}	}
}g}x�t|�D]u}
|d|j�}}tjd|�}|s�t||f��tt	|j
��\}}|j||f�qHW|d|j�}}|d	ks�t||f��|||	|
f<|d|j�}}q�Wtjd
|�}|sKt||f��tt	|j
��\}}|t
|�ks�t||f��g}x�t|�D]�}
|d|j�}}tjd|�}|s�t||f��tt	|j
��\}}	}
||	|
f}|t
|�ks6t||f��|j|�q�W|j|�|d|j�}}|d	ks�t||f��|d|j�}}q�W||_i}tjd|�}|s�t||f��t	|jd��}x�t|�D]�}|d|j�}}tjd
|�}|sFt||f��|jd�}tt	|jdddd��\}}}}|j||ks�t||f��|j||ks�t||f��|dks�t||f��||}|t
|�kst||f��|d|j�}}tjd|�}|sYt||f��i}t|jd��}x`t|�D]R\}}t|�}x7td�D])}|d|>@r�d||d|<q�q�Wq�W||f||<q�W|d|j�}}|d	ks t||f��||_g}|d|j�}}tjd|�}|spt||f��t	|jd��}x�t|�D]�}|d|j�}}tjd|�}|s�t||f��|j
�\}}t	|�}|dkrd}nt|�}|j||f�q�W|d|j�}}|d	ksdt||f��||_|d|j�}}|dks�t||f��|d|j�}}tjd|�}|s�t||f��t	|jd��}|t
|j�kst�|d|j�}}|dksHt||f��|d|j�}}tjd|�}|s�t||f��t	|jd��}|t
|j�ks�t||f��|d|j�}}tjd|�}|s	t||f��t	|jd��} | |jks<	t||f��| |_|d|j�}}|d	ksz	t||f��y|d|j�}}Wntk
r�	nXds�	t||f��dS(s�Parse the .c file written by pgen.  (Internal)

        The file looks as follows.  The first two lines are always this:

        #include "pgenheaders.h"
        #include "grammar.h"

        After that come four blocks:

        1) one or more state definitions
        2) a table defining dfas
        3) a table defining labels
        4) a struct defining the grammar

        A state definition has the following form:
        - one or more arc arrays, each of the form:
          static arc arcs_<n>_<m>[<k>] = {
                  {<i>, <j>},
                  ...
          };
        - followed by a state array, of the form:
          static state states_<s>[<t>] = {
                  {<k>, arcs_<n>_<m>},
                  ...
          };

        sCan't open %s: %siis#include "pgenheaders.h"
s#include "grammar.h"
sstatic arc s)static arc arcs_(\d+)_(\d+)\[(\d+)\] = {$s\s+{(\d+), (\d+)},$s};
s'static state states_(\d+)\[(\d+)\] = {$s\s+{(\d+), arcs_(\d+)_(\d+)},$sstatic dfa dfas\[(\d+)\] = {$s0\s+{(\d+), "(\w+)", (\d+), (\d+), states_(\d+),$iiiis\s+("(?:\\\d\d\d)*")},$is!static label labels\[(\d+)\] = {$s\s+{(\d+), (0|"\w+")},$t0sgrammar _PyParser_Grammar = {
s
\s+(\d+),$s	dfas,
s\s+{(\d+), labels},$s	\s+(\d+)$N(R
RRtnextRt
startswithRRtmapRRtrangetappendtlentstatestgroupR
Rtevalt	enumeratetordtdfastNonetlabelststartt
StopIteration(!RRRRRRtallarcsR%Rtntmtktarcst_titjtstttstateR*tndfasRRtxtytztfirstt	rawbitsettctbyteR,tnlabelsR-((s7/opt/alt/python27/lib64/python2.7/lib2to3/pgen2/conv.pyRTs�		$$
			-%%
$			'!	
cCs�i|_i|_xjt|j�D]Y\}\}}|tjkr_|dk	r_||j|<q"|dkr"||j|<q"q"WdS(s1Create additional useful structures.  (Internal).N(tkeywordsttokensR(R,RtNAMER+(Rtilabelttypetvalue((s7/opt/alt/python27/lib64/python2.7/lib2to3/pgen2/conv.pyR�s		"(t__name__t
__module__t__doc__R	RRR(((s7/opt/alt/python27/lib64/python2.7/lib2to3/pgen2/conv.pyR$s
				�(RKRtpgen2RRtGrammarR(((s7/opt/alt/python27/lib64/python2.7/lib2to3/pgen2/conv.pyt<module>s


Current_dir [ NOT WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
24 Jan 2025 9.35 AM
root / linksafe
0755
__init__.py
0.14 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
__init__.pyc
0.183 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
__init__.pyo
0.183 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
conv.py
9.401 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
conv.pyc
8.073 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
conv.pyo
6.948 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
driver.py
5.899 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
driver.pyc
6.477 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
driver.pyo
6.415 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
grammar.py
6.439 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
grammar.pyc
7.644 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
grammar.pyo
7.644 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
literals.py
1.576 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
literals.pyc
2.021 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
literals.pyo
1.795 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
parse.py
7.864 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
parse.pyc
7.219 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
parse.pyo
7.181 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
pgen.py
13.502 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
pgen.pyc
12.357 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
pgen.pyo
11.759 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
token.py
1.236 KB
8 Jan 2025 10.43 AM
root / linksafe
0755
token.pyc
2.3 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
token.pyo
2.3 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
tokenize.py
18.793 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
tokenize.pyc
16.827 KB
8 Jan 2025 10.43 AM
root / linksafe
0644
tokenize.pyo
16.74 KB
8 Jan 2025 10.43 AM
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF