HEX
Server: LiteSpeed
System: Linux kapuas.iixcp.rumahweb.net 5.14.0-427.42.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Nov 1 14:58:02 EDT 2024 x86_64
User: mirz4654 (1666)
PHP: 8.1.33
Disabled: system,exec,escapeshellarg,escapeshellcmd,passthru,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,popen,pclose,dl,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setsid,posix_setuid,posix_setpgid,ini_alter,show_source,define_syslog_variables,symlink,syslog,openlog,openlog,closelog,ocinumcols,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dll,ftp,myshellexec,socket_bind,mail,posix_getwpuid
Upload Files
File: //opt/alt/python37/lib/python3.7/site-packages/future/builtins/__pycache__/disabled.cpython-37.pyc
B

b���Zb�@s|dZddlmZmZmZddlmZdddddd	d
ddd
ddddgZdd�Zej	stxeD]Z
ee
�e�e
<qXWeZ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

�)�division�absolute_import�print_function)�utilsZapply�chrZcmpZcoerceZexecfile�file�input�longZ	raw_input�reduce�reload�unicodeZxrangeZ
StandardErrorcs�fdd�}|S)z2
    Returns a function that cannot be called
    cstd�����dS)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)�	NameError�format)�args�kwargs)�name��I/opt/alt/python37/lib/python3.7/site-packages/future/builtins/disabled.py�disabled4sz#disabled_function.<locals>.disabledr)rrr)rr�disabled_function0srN)
�__doc__�
__future__rrr�futurerZOBSOLETE_BUILTINSr�PY3�fname�locals�__all__rrrr�<module>$s