D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
alt
/
python311
/
lib64
/
python3.11
/
lib2to3
/
fixes
/
__pycache__
/
Filename :
fix_print.cpython-311.pyc
back
Copy
� !A?h � � � d Z ddlmZ ddlmZ ddlmZ ddlmZ ddlmZm Z m Z mZ ej d� � Z G d� d ej � � Zd S )a Fixer for print. Change: 'print' into 'print()' 'print ...' into 'print(...)' 'print ... ,' into 'print(..., end=" ")' 'print >>x, ...' into 'print(..., file=x)' No changes are applied if print_function is imported from __future__ � )�patcomp)�pytree)�token)� fixer_base)�Name�Call�Comma�Stringz"atom< '(' [atom|STRING|NAME] ')' >c �"