Linux newlinux5.pouyasazan.org 3.10.0-962.3.2.lve1.5.60.el7.x86_64 #1 SMP Fri Jul 23 07:07:00 EDT 2021 x86_64
LiteSpeed
Server IP : 88.99.66.243 & Your IP : 216.73.216.178
Domains :
Cant Read [ /etc/named.conf ]
User : wdbbsgxf
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python2.7 /
site-packages /
past /
types /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
879
B
-rw-r--r--
2019-10-31 04:04
__init__.pyc
972
B
-rw-r--r--
2020-01-24 15:25
__init__.pyo
972
B
-rw-r--r--
2020-01-24 15:25
basestring.py
728
B
-rw-r--r--
2019-10-31 04:04
basestring.pyc
1.5
KB
-rw-r--r--
2020-01-24 15:25
basestring.pyo
1.5
KB
-rw-r--r--
2020-01-24 15:25
olddict.py
2.66
KB
-rw-r--r--
2019-10-31 04:04
olddict.pyc
2.72
KB
-rw-r--r--
2020-01-24 15:25
olddict.pyo
2.72
KB
-rw-r--r--
2020-01-24 15:25
oldstr.py
4.23
KB
-rw-r--r--
2019-10-31 04:04
oldstr.pyc
3.38
KB
-rw-r--r--
2020-01-24 15:25
oldstr.pyo
3.31
KB
-rw-r--r--
2020-01-24 15:25
Save
Rename
""" Forward-ports of types from Python 2 for use with Python 3: - ``basestring``: equivalent to ``(str, bytes)`` in ``isinstance`` checks - ``dict``: with list-producing .keys() etc. methods - ``str``: bytes-like, but iterating over them doesn't product integers - ``long``: alias of Py3 int with ``L`` suffix in the ``repr`` - ``unicode``: alias of Py3 str with ``u`` prefix in the ``repr`` """ from past import utils if utils.PY2: import __builtin__ basestring = __builtin__.basestring dict = __builtin__.dict str = __builtin__.str long = __builtin__.long unicode = __builtin__.unicode __all__ = [] else: from .basestring import basestring from .olddict import olddict from .oldstr import oldstr long = int unicode = str # from .unicode import unicode __all__ = ['basestring', 'olddict', 'oldstr', 'long', 'unicode']