Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../lib64/python2..../idlelib
File: idlever.py
"""
[0] Fix | Delete
The separate Idle version was eliminated years ago;
[1] Fix | Delete
idlelib.idlever is no longer used by Idle
[2] Fix | Delete
and will be removed in 3.6 or later. Use
[3] Fix | Delete
from sys import version
[4] Fix | Delete
IDLE_VERSION = version[:version.index(' ')]
[5] Fix | Delete
"""
[6] Fix | Delete
# Kept for now only for possible existing extension use
[7] Fix | Delete
import warnings as w
[8] Fix | Delete
w.warn(__doc__, DeprecationWarning, stacklevel=2)
[9] Fix | Delete
from sys import version
[10] Fix | Delete
IDLE_VERSION = version[:version.index(' ')]
[11] Fix | Delete
[12] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function