AnonSec Shell
Server IP : 209.38.156.173  /  Your IP : 216.73.216.122   [ Reverse IP ]
Web Server : Apache/2.4.52 (Ubuntu)
System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64
User : root ( 0)
PHP Version : 8.1.2-1ubuntu2.22
Disable Function : NONE
Domains : 2 Domains
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /lib/python3.10/asyncio/__pycache__/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     [ BACKUP SHELL ]     [ JUMPING ]     [ MASS DEFACE ]     [ SCAN ROOT ]     [ SYMLINK ]     

Current File : /lib/python3.10/asyncio/__pycache__/futures.cpython-310.pyc
o

}�5hk7�@sdZdZddlZddlZddlZddlZddlmZddl	m
Z
ddl	mZddl	mZdd	l	m
Z
e
jZe
jZe
jZe
jZejdZGd
d�d�ZeZdd
�Zdd�Zdd�Zdd�Zdd�Zdd�Zdd�dd�ZzddlZWn
ey{YdSwejZZdS)z.A Future class similar to the one in PEP 3148.)�Future�wrap_future�isfuture�N)�GenericAlias�)�base_futures)�events)�
exceptions)�format_helpersc@s�eZdZdZeZdZdZdZdZ	dZ
dZdZdZ
dd�dd�ZejZdd�Zd	d
�Zee�Zedd��Zejd
d��Zdd�Zdd�Zd)dd�Zdd�Zdd�Zdd�Zdd�Z dd�Z!dd�dd �Z"d!d"�Z#d#d$�Z$d%d&�Z%d'd(�Z&e&Z'dS)*ra,This class is *almost* compatible with concurrent.futures.Future.

    Differences:

    - This class is not thread-safe.

    - result() and exception() do not take a timeout argument and
      raise an exception when the future isn't done yet.

    - Callbacks registered with add_done_callback() are always called
      via the event loop's call_soon().

    - This class is not compatible with the wait() and as_completed()
      methods in the concurrent.futures package.

    (In Python 3.4 or later we may be able to unify the implementations.)
    NF��loopcCsD|dur
t��|_n||_g|_|j��r t�t�d��|_	dSdS)z�Initialize the future.

        The optional event_loop argument allows explicitly setting the event
        loop object used by the future. If it's not provided, the future uses
        the default event loop.
        Nr)
r�_get_event_loop�_loop�
_callbacks�	get_debugr
�
extract_stack�sys�	_getframe�_source_traceback��selfr�r�&/usr/lib/python3.10/asyncio/futures.py�__init__Hs

��zFuture.__init__cCsd�|jjd�|����S)Nz<{} {}>� )�format�	__class__�__name__�join�
_repr_info�rrrr�__repr__Zs
�zFuture.__repr__cCsF|jsdS|j}|jj�d�||d�}|jr|j|d<|j�|�dS)Nz exception was never retrieved)�message�	exception�future�source_traceback)�_Future__log_traceback�
_exceptionrrrr�call_exception_handler)r�exc�contextrrr�__del__^s�
zFuture.__del__cCs|jS�N)r&r rrr�_log_tracebackpszFuture._log_tracebackcCs|rtd��d|_dS)Nz'_log_traceback can only be set to FalseF)�
ValueErrorr&)r�valrrrr-ts
cCs|j}|durtd��|S)z-Return the event loop the Future is bound to.Nz!Future object is not initialized.)r�RuntimeErrorrrrr�get_loopzszFuture.get_loopcCs2|jdur
t��}nt�|j�}|j|_d|_|S)z�Create the CancelledError to raise if the Future is cancelled.

        This should only be called once when handling a cancellation since
        it erases the saved context exception value.
        N)�_cancel_messager	�CancelledError�_cancelled_exc�__context__�rr)rrr�_make_cancelled_error�s

zFuture._make_cancelled_errorcCs,d|_|jtkr
dSt|_||_|��dS)z�Cancel the future and schedule callbacks.

        If the future is already done or cancelled, return False.  Otherwise,
        change the future's state to cancelled, schedule the callbacks and
        return True.
        FT)r&�_state�_PENDING�
_CANCELLEDr2�_Future__schedule_callbacks)r�msgrrr�cancel�s
z
Future.cancelcCsH|jdd�}|sdSg|jdd�<|D]
\}}|jj|||d�qdS)z�Internal: Ask the event loop to call all callbacks.

        The callbacks are scheduled to be called as soon as possible. Also
        clears the callback list.
        N�r*)rr�	call_soon)r�	callbacks�callback�ctxrrr�__schedule_callbacks�s�zFuture.__schedule_callbackscCs
|jtkS)z(Return True if the future was cancelled.)r8r:r rrr�	cancelled�s
zFuture.cancelledcCs
|jtkS)z�Return True if the future is done.

        Done means either that a result / exception are available, or that the
        future was cancelled.
        )r8r9r rrr�done�s
zFuture.donecCsN|jtkr|��}|�|jtkrt�d��d|_|jdur$|j�|j	��|j
S)aReturn the result this future represents.

        If the future has been cancelled, raises CancelledError.  If the
        future's result isn't yet available, raises InvalidStateError.  If
        the future is done and has an exception set, this exception is raised.
        zResult is not ready.FN)r8r:r7�	_FINISHEDr	�InvalidStateErrorr&r'�with_traceback�
_exception_tb�_resultr6rrr�result�s



z
Future.resultcCs6|jtkr|��}|�|jtkrt�d��d|_|jS)a&Return the exception that was set on this future.

        The exception (or None if no exception was set) is returned only if
        the future is done.  If the future has been cancelled, raises
        CancelledError.  If the future isn't done yet, raises
        InvalidStateError.
        zException is not set.F)r8r:r7rFr	rGr&r'r6rrrr#�s


zFuture.exceptionr>cCsD|jtkr|jj|||d�dS|durt��}|j�||f�dS)z�Add a callback to be run when the future becomes done.

        The callback is called with a single argument - the future object. If
        the future is already done when this is called, the callback is
        scheduled with call_soon.
        r>N)r8r9rr?�contextvars�copy_contextr�append)r�fnr*rrr�add_done_callback�s

zFuture.add_done_callbackcs<�fdd�|jD�}t|j�t|�}|r||jdd�<|S)z}Remove all instances of a callback from the "call when done" list.

        Returns the number of callbacks removed.
        cs g|]\}}|�kr||f�qSrr)�.0�frB�rOrr�
<listcomp>�s
�z/Future.remove_done_callback.<locals>.<listcomp>N)r�len)rrO�filtered_callbacks�
removed_countrrSr�remove_done_callback�s
�zFuture.remove_done_callbackcCs8|jtkrt�|j�d|����||_t|_|��dS)z�Mark the future done and set its result.

        If the future is already done when this method is called, raises
        InvalidStateError.
        �: N)r8r9r	rGrJrFr;)rrKrrr�
set_result�s

zFuture.set_resultcCsj|jtkrt�|j�d|����t|t�r|�}t|�tur"td��||_|j	|_
t|_|��d|_
dS)z�Mark the future done and set an exception.

        If the future is already done when this method is called, raises
        InvalidStateError.
        rYzPStopIteration interacts badly with generators and cannot be raised into a FutureTN)r8r9r	rG�
isinstance�type�
StopIteration�	TypeErrorr'�
__traceback__rIrFr;r&)rr#rrr�
set_exceptions


zFuture.set_exceptionccs.�|��sd|_|V|��std��|��S)NTzawait wasn't used with future)rE�_asyncio_future_blockingr0rKr rrr�	__await__s�zFuture.__await__r,)(r�
__module__�__qualname__�__doc__r9r8rJr'rrr2r4rar&rr�_future_repr_inforr!r+�classmethodr�__class_getitem__�propertyr-�setterr1r7r=r;rDrErKr#rPrXrZr`rb�__iter__rrrrrsD


rcCs&z|j}W|�StyY|jSwr,)r1�AttributeErrorr)�futr1rrr�	_get_loop)s��rncCs|��rdS|�|�dS)z?Helper setting the result only if the future was not cancelled.N)rDrZ)rmrKrrr�_set_result_unless_cancelled5srocCsTt|�}|tjjurtj|j�S|tjjurtj|j�S|tjjur(tj|j�S|Sr,)r\�
concurrent�futuresr3r	�args�TimeoutErrorrG)r)�	exc_classrrr�_convert_future_exc<srucCs`|��sJ�|��r|��|��sdS|��}|dur%|�t|��dS|��}|�|�dS)z8Copy state from a future to a concurrent.futures.Future.N)	rErDr=�set_running_or_notify_cancelr#r`rurKrZ)rp�sourcer#rKrrr�_set_concurrent_future_stateHsrxcCsp|��sJ�|��rdS|��rJ�|��r|��dS|��}|dur-|�t|��dS|��}|�|�dS)zqInternal helper to copy state from another Future.

    The other Future may be a concurrent.futures.Future.
    N)rErDr=r#r`rurKrZ)rw�destr#rKrrr�_copy_future_stateWsrzcs�t��st�tjj�std��t��st�tjj�std��t��r&t��nd�t��r0t��nd�dd�����fdd�}����fdd	�}��|���|�dS)
aChain two futures so that when one completes, so does the other.

    The result (or exception) of source will be copied to destination.
    If destination is cancelled, source gets cancelled too.
    Compatible with both asyncio.Future and concurrent.futures.Future.
    z(A future is required for source argumentz-A future is required for destination argumentNcSs$t|�rt||�dSt||�dSr,)rrzrx)r$�otherrrr�
_set_state{sz!_chain_future.<locals>._set_statecs8|��r�dus��ur���dS���j�dSdSr,)rDr=�call_soon_threadsafe)�destination)�	dest_looprw�source_looprr�_call_check_cancel�s
�z)_chain_future.<locals>._call_check_cancelcsX���r�dur���rdS�dus��ur��|�dS���r#dS����|�dSr,)rD�	is_closedr})rw)r|rr~r�rr�_call_set_state�sz&_chain_future.<locals>._call_set_state)rr[rprqrr^rnrP)rwr~r�r�r)r|rr~rwr�r�
_chain_futureks��
r�rcCsNt|�r|St|tjj�sJd|����|durt��}|��}t||�|S)z&Wrap concurrent.futures.Future object.z+concurrent.futures.Future is expected, got N)	rr[rprqrrr
�
create_futurer�)r$r�
new_futurerrrr�s�
r) re�__all__�concurrent.futuresrprL�loggingr�typesr�rrr	r
rr9r:rF�DEBUG�STACK_DEBUGr�	_PyFuturernrorurxrzr�r�_asyncio�ImportError�_CFuturerrrr�<module>sB

,
�

Anon7 - 2022
AnonSec Team