관리-도구
편집 파일: fix_input.cpython-311.pyc
� �܋f� � �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.6/venv/lib/python3.11/site-packages/libfuturize/fixes/fix_input.pyr zFixInput.transform s<