📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-22 08:10:39
📂
/ (Root)
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
libfuturize
/
fixes
/
__pycache__
📍 /opt/cloudlinux/venv/lib/python3.11/site-packages/libfuturize/fixes/__pycache__
🔄 Refresh
✏️
Editing: fix_print.cpython-311.pyc
Read Only
� �|oi) � � � d Z ddlmZmZmZ ddlmZ ddlmZm Z m Z mZ ej d� � Z G d� dej � � ZdS ) a, Fixer for print. Change: "print" into "print()" "print ..." into "print(...)" "print(...)" not changed "print ... ," into "print(..., end=' ')" "print >>x, ..." into "print(..., file=x)" No changes are applied if print_function is imported from __future__ � )�patcomp�pytree� fixer_base)�token)�Name�Call�Comma�Stringz8atom< '(' [arith_expr|atom|power|term|STRING|NAME] ')' >c �"