Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
usr
/
local
/
lib
/
python3.6
/
site-packages
/
libfuturize
/
fixes
/
__pycache__
✏️
Editing: fix_input.cpython-36.pyc
3 ��jf� � @ 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"