????
Current Path : /proc/self/root/lib/python3.6/site-packages/libfuturize/fixes/__pycache__/ |
Current File : //proc/self/root/lib/python3.6/site-packages/libfuturize/fixes/__pycache__/fix_input.cpython-36.pyc |
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"