Файловый менеджер - Редактировать - /usr/lib/python3.9/site-packages/libfuturize/fixes/__pycache__/fix_input.cpython-39.pyc
Назад
a �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"