Uname : Linux premium36.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Soft : LiteSpeed
Ip : 198.54.115.237
Port : 443
~
/
proc
/
self
/
root
/
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
libfuturize
/
fixes
/
__pycache__
[ HOME ]
Exec
Submit
File Name : fix_order___future__imports.cpython-37.pyc
B �A�[= � @ s2 d Z ddlmZ ddlmZ G dd� dej�ZdS )aE UNFINISHED Fixer for turning multiple lines like these: from __future__ import division from __future__ import absolute_import from __future__ import print_function into a single line like this: from __future__ import (absolute_import, division, print_function) This helps with testing of ``futurize``. � )� fixer_base)� future_importc @ s e Zd ZdZdZdZdd� ZdS )�FixOrderFutureImportsTZ file_input� c C s d S )N� )�self�node�resultsr r �^/opt/alt/python37/lib/python3.7/site-packages/libfuturize/fixes/fix_order___future__imports.py� transform"