/usr/local/lib/python3.9/site-packages/future/builtins/__pycache__
NameSizeModeActions
disabled.cpython-39.pyc23210644editdlrm
iterators.cpython-39.pyc14980644editdlrm
misc.cpython-39.pyc30490644editdlrm
newnext.cpython-39.pyc20160644editdlrm
newround.cpython-39.pyc27860644editdlrm
newsuper.cpython-39.pyc30430644editdlrm
new_min_max.cpython-39.pyc15620644editdlrm
__init__.cpython-39.pyc12260644editdlrm
Edit: /usr/local/lib/python3.9/site-packages/future/builtins/__pycache__/disabled.cpython-39.pyc (2321B)
a ^Eg=@s`dZddlmZmZmZddlmZgdZddZej sXeD]Z ee e e <q>eZ ngZ dS)a 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 )divisionabsolute_importprint_function)utils)applychrcmpZcoerceZexecfilefileinputlong raw_inputreducereloadunicodexrange StandardErrorcsfdd}|S)z2 Returns a function that cannot be called cstddS)zy A function disabled by the ``future`` module. This function is no longer a builtin in Python 3. z)obsolete Python 2 builtin {0} is disabledN) NameErrorformat)argskwargsnameB/usr/local/lib/python3.9/site-packages/future/builtins/disabled.pydisabled4sz#disabled_function..disabledr)rrrrrdisabled_function0s rN) __doc__ __future__rrrfuturerZOBSOLETE_BUILTINSrPY3fnamelocals__all__rrrrs%