⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
lib64
/
python3.6
/
lib2to3
/
fixes
/
__pycache__
/
View File Name :
fix_import.cpython-36.opt-1.pyc
3 \� � @ sZ d Z ddlmZ ddlmZmZmZmZ ddlm Z m Z mZ dd� ZG dd � d ej �Zd S )z�Fixer for import statements. If spam is being imported from the local directory, this import: from spam import eggs Becomes: from .spam import eggs And this import: import spam Becomes: from . import spam � )� fixer_base� )�dirname�join�exists�sep)� FromImport�syms�tokenc c s� | g}x�|r�|j � }|jtjkr*|jV q|jtjkrPdjdd� |jD ��V q|jtj krn|j |jd � q|jtjkr�|j|jddd� � qt d��qW dS ) zF Walks over all the names imported in a dotted_as_names node. � c S s g | ] }|j �qS � )�value)�.0Zchr r �"/usr/lib64/python3.6/fix_import.py� <listcomp> s z$traverse_imports.<locals>.<listcomp>r Nr zunknown node type���)�pop�typer �NAMEr r Zdotted_namer �childrenZdotted_as_name�appendZdotted_as_names�extend�AssertionError)�names�pending�noder r r �traverse_imports s r c s4 e Zd ZdZdZ� fdd�Zdd� Zdd� Z� ZS ) � FixImportTzj import_from< 'from' imp=any 'import' ['('] any [')'] > | import_name< 'import' imp=any > c s"