D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
usr
/
lib
/
python3.6
/
site-packages
/
libfuturize
/
fixes
/
__pycache__
/
Filename :
fix_input.cpython-36.pyc
back
Copy
3 �c� � @ s2 d Z ddlZddlmZ G dd� dejjj�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 s e Zd Z� fdd�Z� ZS )�FixInputc s"