Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
defer /
__pycache__ /
[ HOME SHELL ]
Name
Size
Permission
Action
__init__.cpython-310.pyc
16.4
KB
-rw-r--r--
utils.cpython-310.pyc
3.19
KB
-rw-r--r--
version.cpython-310.pyc
157
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : __init__.cpython-310.pyc
o �r�a�W � @ s� d Z dZdZddlZddlmZ ddlZddlZddl m Z e jZej jdkZG d d � d e�ZG dd� de�ZG d d� de�ZG dd� de�Zdd� Zdd� Zdd� Zdd� Zdd� ZdS )z-Small framework for asynchronous programming.z%Sebastian Heinlein <devel@glatzor.de>)�Deferred�AlreadyCalledDeferred�DeferredException�defer�inline_callbacks�return_value� N��wraps� )�version� c @ s e Zd ZdZdd� ZdS )�_DefGen_Returnz5Exception to return a result from an inline callback.c C s || _ d S �N)�value)�selfr � r �0/usr/lib/python3/dist-packages/defer/__init__.py�__init__S s z_DefGen_Return.__init__N)�__name__� __module__�__qualname__�__doc__r r r r r r Q s r c @ s e Zd ZdZdS )r z+The Deferred is already running a callback.N)r r r r r r r r r W s r c @ s* e Zd ZdZd dd�Zdd� Zdd� ZdS ) r zAllows to defer exceptions.Nc C sR || _ || _|| _t|t�r|j| _ || _dS |r|s't�� \| _ | _| _dS dS )a� Return a new DeferredException instance. If type, value and traceback are not specified the infotmation will be retreieved from the last caught exception: >>> try: ... raise Exception("Test") ... except: ... deferred_exc = DeferredException() >>> deferred_exc.raise_exception() Traceback (most recent call last): ... Exception: Test Alternatively you can set the exception manually: >>> exception = Exception("Test 2") >>> deferred_exc = DeferredException(exception) >>> deferred_exc.raise_exception() Traceback (most recent call last): ... Exception: Test 2 N)�typer � traceback� isinstance� Exception� __class__�sys�exc_info)r r r r r r r r ^ s �zDeferredException.__init__c C s&