Current Path: > > opt > alt > python37 > lib64 > python3.7 > lib2to3 > pgen2 > __pycache__
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
__init__.cpython-37.opt-1.pyc | File | 176 bytes | April 17 2024 17:36:13. | |
__init__.cpython-37.opt-2.pyc | File | 148 bytes | April 17 2024 17:35:53. | |
__init__.cpython-37.pyc | File | 176 bytes | April 17 2024 17:36:19. | |
conv.cpython-37.opt-1.pyc | File | 6167 bytes | April 17 2024 17:36:13. | |
conv.cpython-37.opt-2.pyc | File | 3683 bytes | April 17 2024 17:35:53. | |
conv.cpython-37.pyc | File | 7051 bytes | April 17 2024 17:36:19. | |
driver.cpython-37.opt-1.pyc | File | 5089 bytes | April 17 2024 17:36:13. | |
driver.cpython-37.opt-2.pyc | File | 4044 bytes | April 17 2024 17:35:53. | |
driver.cpython-37.pyc | File | 5137 bytes | April 17 2024 17:36:19. | |
grammar.cpython-37.opt-1.pyc | File | 7027 bytes | April 17 2024 17:36:13. | |
grammar.cpython-37.opt-2.pyc | File | 3213 bytes | April 17 2024 17:35:53. | |
grammar.cpython-37.pyc | File | 7027 bytes | April 17 2024 17:36:19. | |
literals.cpython-37.opt-1.pyc | File | 1367 bytes | April 17 2024 17:36:13. | |
literals.cpython-37.opt-2.pyc | File | 1290 bytes | April 17 2024 17:35:53. | |
literals.cpython-37.pyc | File | 1555 bytes | April 17 2024 17:36:19. | |
parse.cpython-37.opt-1.pyc | File | 6269 bytes | April 17 2024 17:36:13. | |
parse.cpython-37.opt-2.pyc | File | 3048 bytes | April 17 2024 17:35:53. | |
parse.cpython-37.pyc | File | 6301 bytes | April 17 2024 17:36:19. | |
pgen.cpython-37.opt-1.pyc | File | 9335 bytes | April 17 2024 17:36:13. | |
pgen.cpython-37.opt-2.pyc | File | 9335 bytes | April 17 2024 17:35:53. | |
pgen.cpython-37.pyc | File | 9777 bytes | April 17 2024 17:36:19. | |
token.cpython-37.opt-1.pyc | File | 1892 bytes | April 17 2024 17:36:13. | |
token.cpython-37.opt-2.pyc | File | 1842 bytes | April 17 2024 17:35:53. | |
token.cpython-37.pyc | File | 1892 bytes | April 17 2024 17:36:19. | |
tokenize.cpython-37.opt-1.pyc | File | 15072 bytes | April 17 2024 17:36:13. | |
tokenize.cpython-37.opt-2.pyc | File | 11142 bytes | April 17 2024 17:35:53. | |
tokenize.cpython-37.pyc | File | 15142 bytes | April 17 2024 17:36:19. |
B � f_R � @ s� d Z dZdZddlZddlZddlmZmZ ddlT ddl m Z d d � ee �D �ddd g Z[ ye W n ek r~ eZ Y nX dd� Zdd� Zdd� Zdd� ZdZdZeede � ee� ZdZdZdZdZedd�Zeeeee�ZdZed d!�ee� Zd"e Zeee�Z ed#e d$ �Z!ee!e e�Z"d%Z#d&Z$d'Z%d(Z&d)Z'ee'd* e'd+ �Z(ee'd, e'd- �Z)ed.d/d0d1d2d3d4d5d6� Z*d7Z+ed8d9d:�Z,ee*e+e,�Z-ee"e-e)e�Z.ee. Z/ee'd; ed<d� e'd= ed>d� �Z0edee(�Z1eee1e"e-e0e� Z2e3ej4e/e2e%e&f�\Z5Z6Z7Z8ed?d@dAdB�ed?d@dCdD�B dEdFdGdHdIdJhB Z9e�4e#�e�4e$�e7e8dK�dLdM� e9D �dNdM� e9D �dOdM� e9D ��Z:d*d+hdPdQ� e9D �B dRdQ� e9D �B Z;d<d>hdSdQ� e9D �B dTdQ� e9D �B Z<dUZ=G dVdW� dWe>�Z?G dXdY� dYe>�Z@dZd[� ZAeAfd\d�ZBd]d^� ZCG d_d`� d`�ZDe�4daejE�ZFe�4dbejE�ZGdcdd� ZHdedf� ZIdgd � ZJdhd� ZKeLdik�r�ddlMZMeNeMjO�dk�r�eBePeMjOd �jQ� neBeMjRjQ� dS )ja� Tokenization help for Python programs. generate_tokens(readline) is a generator that breaks a stream of text into Python tokens. It accepts a readline-like method which is called repeatedly to get the next line of input (or "" for EOF). It generates 5-tuples with these members: the token type (see token.py) the token (a string) the starting (row, column) indices of the token (a 2-tuple of ints) the ending (row, column) indices of the token (a 2-tuple of ints) the original line (string) It is designed to match the working of the Python tokenizer exactly, except that it produces COMMENT tokens for comments and gives type OP for all operators Older entry points tokenize_loop(readline, tokeneater) tokenize(readline, tokeneater=printtoken) are the same, except instead of generating tokens, tokeneater is a callback function to which the 5 fields described above are passed as 5 arguments, each time a new token is found.zKa-Ping Yee <ping@lfw.org>z@GvR, ESR, Tim Peters, Thomas Wouters, Fred Drake, Skip Montanaro� N)�BOM_UTF8�lookup)�*� )�tokenc C s g | ]}|d dkr|�qS )r �_� )�.0�xr r �;/opt/alt/python37/lib64/python3.7/lib2to3/pgen2/tokenize.py� <listcomp>% s r �tokenize�generate_tokens� untokenizec G s dd� | � d S )N�(�|�))�join)�choicesr r r �group0 � r c G s t | � d S )Nr )r )r r r r �any1 r r c G s t | � d S )N�?)r )r r r r �maybe2 r r c s t � fdd�� D ��S )Nc 3 s4 | ],}� d D ]}|� � |� � kr|| V qqdS ))� N)�casefold)r r �y)�lr r � <genexpr>5 s z _combinations.<locals>.<genexpr>)�set)r r )r r � _combinations3 s r z[ \f\t]*z #[^\r\n]*z\\\r?\nz\w+z0[bB]_?[01]+(?:_[01]+)*z(0[xX]_?[\da-fA-F]+(?:_[\da-fA-F]+)*[lL]?z0[oO]?_?[0-7]+(?:_[0-7]+)*[lL]?z[1-9]\d*(?:_\d+)*[lL]?z0[lL]?z[eE][-+]?\d+(?:_\d+)*z\d+(?:_\d+)*\.(?:\d+(?:_\d+)*)?z\.\d+(?:_\d+)*z\d+(?:_\d+)*z\d+(?:_\d+)*[jJ]z[jJ]z[^'\\]*(?:\\.[^'\\]*)*'z[^"\\]*(?:\\.[^"\\]*)*"z%[^'\\]*(?:(?:\\.|'(?!''))[^'\\]*)*'''z%[^"\\]*(?:(?:\\.|"(?!""))[^"\\]*)*"""z'(?:[uUrRbBfF]|[rR][fFbB]|[fFbBuU][rR])?z'''z"""z'[^\n'\\]*(?:\\.[^\n'\\]*)*'z"[^\n"\\]*(?:\\.[^\n"\\]*)*"z\*\*=?z>>=?z<<=?z<>z!=z//=?z->z[+\-*/%&@|^=<>]=?�~z[][(){}]z\r?\nz:=z[:;.,`@]z'[^\n'\\]*(?:\\.[^\n'\\]*)*�'z"[^\n"\\]*(?:\\.[^\n"\\]*)*�"�r�R�f�F�b�B�u�UZurZuRZUrZUR)r"