Uname : Linux premium36.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
Soft : LiteSpeed
Ip : 198.54.115.237
Port : 443
~
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
libfuturize
/
fixes
/
__pycache__
[ HOME ]
Exec
Submit
fix_input.cpython-311.pyc
� � h� � �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 ��l/builddir/build/BUILD/cloudlinux-venv-1.0.8/venv/lib/python3.11/site-packages/libfuturize/fixes/fix_input.pyr zFixInput.transform s<