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 :  /lib64/python3.8/asyncio/__pycache__/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //lib64/python3.8/asyncio/__pycache__/transports.cpython-38.pyc
U

e5d�(�@s|dZdZGdd�d�ZGdd�de�ZGdd�de�ZGdd	�d	ee�ZGd
d�de�ZGdd
�d
e�ZGdd�de�ZdS)zAbstract Transport class.)�
BaseTransport�
ReadTransport�WriteTransport�	Transport�DatagramTransport�SubprocessTransportc@sHeZdZdZdZddd�Zddd�Zdd	�Zd
d�Zdd
�Z	dd�Z
dS)rzBase class for transports.��_extraNcCs|dkri}||_dS�Nr)�self�extra�r�*/usr/lib64/python3.8/asyncio/transports.py�__init__szBaseTransport.__init__cCs|j�||�S)z#Get optional transport information.)r�get)r
�name�defaultrrr
�get_extra_infoszBaseTransport.get_extra_infocCst�dS)z2Return True if the transport is closing or closed.N��NotImplementedError�r
rrr
�
is_closingszBaseTransport.is_closingcCst�dS)aClose the transport.

        Buffered data will be flushed asynchronously.  No more data
        will be received.  After all buffered data is flushed, the
        protocol's connection_lost() method will (eventually) be
        called with None as its argument.
        Nrrrrr
�closeszBaseTransport.closecCst�dS)zSet a new protocol.Nr)r
�protocolrrr
�set_protocol%szBaseTransport.set_protocolcCst�dS)zReturn the current protocol.Nrrrrr
�get_protocol)szBaseTransport.get_protocol)N)N)�__name__�
__module__�__qualname__�__doc__�	__slots__rrrrrrrrrr
r	s


rc@s,eZdZdZdZdd�Zdd�Zdd�Zd	S)
rz#Interface for read-only transports.rcCst�dS)z*Return True if the transport is receiving.Nrrrrr
�
is_reading3szReadTransport.is_readingcCst�dS)z�Pause the receiving end.

        No data will be passed to the protocol's data_received()
        method until resume_reading() is called.
        Nrrrrr
�
pause_reading7szReadTransport.pause_readingcCst�dS)z�Resume the receiving end.

        Data received will once again be passed to the protocol's
        data_received() method.
        Nrrrrr
�resume_reading?szReadTransport.resume_readingN)rrrrrr r!r"rrrr
r.s
rc@sNeZdZdZdZddd�Zdd�Zdd	�Zd
d�Zdd
�Z	dd�Z
dd�ZdS)rz$Interface for write-only transports.rNcCst�dS)a�Set the high- and low-water limits for write flow control.

        These two values control when to call the protocol's
        pause_writing() and resume_writing() methods.  If specified,
        the low-water limit must be less than or equal to the
        high-water limit.  Neither value can be negative.

        The defaults are implementation-specific.  If only the
        high-water limit is given, the low-water limit defaults to an
        implementation-specific value less than or equal to the
        high-water limit.  Setting high to zero forces low to zero as
        well, and causes pause_writing() to be called whenever the
        buffer becomes non-empty.  Setting low to zero causes
        resume_writing() to be called only once the buffer is empty.
        Use of zero for either limit is generally sub-optimal as it
        reduces opportunities for doing I/O and computation
        concurrently.
        Nr�r
�high�lowrrr
�set_write_buffer_limitsMsz&WriteTransport.set_write_buffer_limitscCst�dS)z,Return the current size of the write buffer.Nrrrrr
�get_write_buffer_sizebsz$WriteTransport.get_write_buffer_sizecCst�dS)z�Write some data bytes to the transport.

        This does not block; it buffers the data and arranges for it
        to be sent out asynchronously.
        Nr)r
�datarrr
�writefszWriteTransport.writecCsd�|�}|�|�dS)z�Write a list (or any iterable) of data bytes to the transport.

        The default implementation concatenates the arguments and
        calls write() on the result.
        �N)�joinr))r
Zlist_of_datar(rrr
�
writelinesns
zWriteTransport.writelinescCst�dS)z�Close the write end after flushing buffered data.

        (This is like typing ^D into a UNIX program reading from stdin.)

        Data may still be received.
        Nrrrrr
�	write_eofwszWriteTransport.write_eofcCst�dS)zAReturn True if this transport supports write_eof(), False if not.Nrrrrr
�
can_write_eof�szWriteTransport.can_write_eofcCst�dS�z�Close the transport immediately.

        Buffered data will be lost.  No more data will be received.
        The protocol's connection_lost() method will (eventually) be
        called with None as its argument.
        Nrrrrr
�abort�szWriteTransport.abort)NN)rrrrrr&r'r)r,r-r.r0rrrr
rHs
		rc@seZdZdZdZdS)raSInterface representing a bidirectional transport.

    There may be several implementations, but typically, the user does
    not implement new transports; rather, the platform provides some
    useful transports that are implemented using the platform's best
    practices.

    The user never instantiates a transport directly; they call a
    utility function, passing it a protocol factory and other
    information necessary to create the transport and protocol.  (E.g.
    EventLoop.create_connection() or EventLoop.create_server().)

    The utility function will asynchronously create a transport and a
    protocol and hook them up by calling the protocol's
    connection_made() method, passing it the transport.

    The implementation here raises NotImplemented for every method
    except writelines(), which calls write() in a loop.
    rN)rrrrrrrrr
r�src@s&eZdZdZdZddd�Zdd�ZdS)	rz(Interface for datagram (UDP) transports.rNcCst�dS)aSend data to the transport.

        This does not block; it buffers the data and arranges for it
        to be sent out asynchronously.
        addr is target socket address.
        If addr is None use target address pointed on transport creation.
        Nr)r
r(Zaddrrrr
�sendto�szDatagramTransport.sendtocCst�dSr/rrrrr
r0�szDatagramTransport.abort)N)rrrrrr1r0rrrr
r�s

rc@s@eZdZdZdd�Zdd�Zdd�Zdd	�Zd
d�Zdd
�Z	dS)rrcCst�dS)zGet subprocess id.Nrrrrr
�get_pid�szSubprocessTransport.get_pidcCst�dS)z�Get subprocess returncode.

        See also
        http://docs.python.org/3/library/subprocess#subprocess.Popen.returncode
        Nrrrrr
�get_returncode�sz"SubprocessTransport.get_returncodecCst�dS)z&Get transport for pipe with number fd.Nr)r
�fdrrr
�get_pipe_transport�sz&SubprocessTransport.get_pipe_transportcCst�dS)z�Send signal to subprocess.

        See also:
        docs.python.org/3/library/subprocess#subprocess.Popen.send_signal
        Nr)r
�signalrrr
�send_signal�szSubprocessTransport.send_signalcCst�dS)aLStop the subprocess.

        Alias for close() method.

        On Posix OSs the method sends SIGTERM to the subprocess.
        On Windows the Win32 API function TerminateProcess()
         is called to stop the subprocess.

        See also:
        http://docs.python.org/3/library/subprocess#subprocess.Popen.terminate
        Nrrrrr
�	terminate�szSubprocessTransport.terminatecCst�dS)z�Kill the subprocess.

        On Posix OSs the function sends SIGKILL to the subprocess.
        On Windows kill() is an alias for terminate().

        See also:
        http://docs.python.org/3/library/subprocess#subprocess.Popen.kill
        Nrrrrr
�kill�s	zSubprocessTransport.killN)
rrrrr2r3r5r7r8r9rrrr
r�srcsZeZdZdZdZd�fdd�	Zdd�Zdd	�Zd
d�Zddd
�Z	ddd�Z
dd�Z�ZS)�_FlowControlMixinavAll the logic for (write) flow control in a mix-in base class.

    The subclass must implement get_write_buffer_size().  It must call
    _maybe_pause_protocol() whenever the write buffer size increases,
    and _maybe_resume_protocol() whenever it decreases.  It may also
    override set_write_buffer_limits() (e.g. to specify different
    defaults).

    The subclass constructor must call super().__init__(extra).  This
    will call set_write_buffer_limits().

    The user may call set_write_buffer_limits() and
    get_write_buffer_size(), and their protocol's pause_writing() and
    resume_writing() may be called.
    )�_loop�_protocol_paused�_high_water�
_low_waterNcs0t��|�|dk	st�||_d|_|��dS)NF)�superr�AssertionErrorr;r<�_set_write_buffer_limits)r
rZloop��	__class__rr
rs
z_FlowControlMixin.__init__c
Cs�|��}||jkrdS|js�d|_z|j��WnRttfk
rJ�Yn:tk
r�}z|j�	d|||jd��W5d}~XYnXdS)NTzprotocol.pause_writing() failed��messageZ	exceptionZ	transportr)
r'r=r<�	_protocolZ
pause_writing�
SystemExit�KeyboardInterrupt�
BaseExceptionr;�call_exception_handler)r
�size�excrrr
�_maybe_pause_protocols 
�z'_FlowControlMixin._maybe_pause_protocolc
Cs�|jr||��|jkr|d|_z|j��WnRttfk
rB�Yn:tk
rz}z|j�	d|||jd��W5d}~XYnXdS)NFz protocol.resume_writing() failedrD)
r<r'r>rFZresume_writingrGrHrIr;rJ)r
rLrrr
�_maybe_resume_protocol!s��z(_FlowControlMixin._maybe_resume_protocolcCs|j|jfSr	)r>r=rrrr
�get_write_buffer_limits1sz)_FlowControlMixin.get_write_buffer_limitscCsj|dkr|dkrd}nd|}|dkr.|d}||krBdksZntd|�d|�d���||_||_dS)Ni��zhigh (z) must be >= low (z) must be >= 0)�
ValueErrorr=r>r#rrr
rA4s�z*_FlowControlMixin._set_write_buffer_limitscCs|j||d�|��dS)N)r$r%)rArMr#rrr
r&Dsz)_FlowControlMixin.set_write_buffer_limitscCst�dSr	rrrrr
r'Hsz'_FlowControlMixin.get_write_buffer_size)NN)NN)NN)
rrrrrrrMrNrOrAr&r'�
__classcell__rrrBr
r:�s

r:N)	r�__all__rrrrrrr:rrrr
�<module>s%F6
Name
Size
Permissions
Options
__init__.cpython-38.opt-1.pyc
0.734 KB
-rw-r--r--
__init__.cpython-38.opt-2.pyc
0.68 KB
-rw-r--r--
__init__.cpython-38.pyc
0.734 KB
-rw-r--r--
__main__.cpython-38.opt-1.pyc
3.064 KB
-rw-r--r--
__main__.cpython-38.opt-2.pyc
3.064 KB
-rw-r--r--
__main__.cpython-38.pyc
3.064 KB
-rw-r--r--
base_events.cpython-38.opt-1.pyc
49.605 KB
-rw-r--r--
base_events.cpython-38.opt-2.pyc
40.835 KB
-rw-r--r--
base_events.cpython-38.pyc
49.826 KB
-rw-r--r--
base_futures.cpython-38.opt-1.pyc
1.855 KB
-rw-r--r--
base_futures.cpython-38.opt-2.pyc
1.607 KB
-rw-r--r--
base_futures.cpython-38.pyc
1.855 KB
-rw-r--r--
base_subprocess.cpython-38.opt-1.pyc
9.104 KB
-rw-r--r--
base_subprocess.cpython-38.opt-2.pyc
9.006 KB
-rw-r--r--
base_subprocess.cpython-38.pyc
9.197 KB
-rw-r--r--
base_tasks.cpython-38.opt-1.pyc
1.9 KB
-rw-r--r--
base_tasks.cpython-38.opt-2.pyc
1.9 KB
-rw-r--r--
base_tasks.cpython-38.pyc
1.9 KB
-rw-r--r--
constants.cpython-38.opt-1.pyc
0.569 KB
-rw-r--r--
constants.cpython-38.opt-2.pyc
0.569 KB
-rw-r--r--
constants.cpython-38.pyc
0.569 KB
-rw-r--r--
coroutines.cpython-38.opt-1.pyc
6.417 KB
-rw-r--r--
coroutines.cpython-38.opt-2.pyc
6.19 KB
-rw-r--r--
coroutines.cpython-38.pyc
6.5 KB
-rw-r--r--
events.cpython-38.opt-1.pyc
27.296 KB
-rw-r--r--
events.cpython-38.opt-2.pyc
18.456 KB
-rw-r--r--
events.cpython-38.pyc
27.401 KB
-rw-r--r--
exceptions.cpython-38.opt-1.pyc
2.491 KB
-rw-r--r--
exceptions.cpython-38.opt-2.pyc
1.862 KB
-rw-r--r--
exceptions.cpython-38.pyc
2.491 KB
-rw-r--r--
format_helpers.cpython-38.opt-1.pyc
2.279 KB
-rw-r--r--
format_helpers.cpython-38.opt-2.pyc
2.041 KB
-rw-r--r--
format_helpers.cpython-38.pyc
2.279 KB
-rw-r--r--
futures.cpython-38.opt-1.pyc
10.76 KB
-rw-r--r--
futures.cpython-38.opt-2.pyc
7.531 KB
-rw-r--r--
futures.cpython-38.pyc
10.933 KB
-rw-r--r--
locks.cpython-38.opt-1.pyc
15.986 KB
-rw-r--r--
locks.cpython-38.opt-2.pyc
9.539 KB
-rw-r--r--
locks.cpython-38.pyc
15.986 KB
-rw-r--r--
log.cpython-38.opt-1.pyc
0.223 KB
-rw-r--r--
log.cpython-38.opt-2.pyc
0.185 KB
-rw-r--r--
log.cpython-38.pyc
0.223 KB
-rw-r--r--
proactor_events.cpython-38.opt-1.pyc
23.31 KB
-rw-r--r--
proactor_events.cpython-38.opt-2.pyc
22.919 KB
-rw-r--r--
proactor_events.cpython-38.pyc
23.581 KB
-rw-r--r--
protocols.cpython-38.opt-1.pyc
8.414 KB
-rw-r--r--
protocols.cpython-38.opt-2.pyc
3.278 KB
-rw-r--r--
protocols.cpython-38.pyc
8.414 KB
-rw-r--r--
queues.cpython-38.opt-1.pyc
8.187 KB
-rw-r--r--
queues.cpython-38.opt-2.pyc
5.57 KB
-rw-r--r--
queues.cpython-38.pyc
8.187 KB
-rw-r--r--
runners.cpython-38.opt-1.pyc
1.903 KB
-rw-r--r--
runners.cpython-38.opt-2.pyc
1.237 KB
-rw-r--r--
runners.cpython-38.pyc
1.903 KB
-rw-r--r--
selector_events.cpython-38.opt-1.pyc
28.933 KB
-rw-r--r--
selector_events.cpython-38.opt-2.pyc
27.337 KB
-rw-r--r--
selector_events.cpython-38.pyc
28.991 KB
-rw-r--r--
sslproto.cpython-38.opt-1.pyc
20.918 KB
-rw-r--r--
sslproto.cpython-38.opt-2.pyc
14.274 KB
-rw-r--r--
sslproto.cpython-38.pyc
21.113 KB
-rw-r--r--
staggered.cpython-38.opt-1.pyc
3.854 KB
-rw-r--r--
staggered.cpython-38.opt-2.pyc
1.771 KB
-rw-r--r--
staggered.cpython-38.pyc
4.023 KB
-rw-r--r--
streams.cpython-38.opt-1.pyc
19.89 KB
-rw-r--r--
streams.cpython-38.opt-2.pyc
14.134 KB
-rw-r--r--
streams.cpython-38.pyc
20.158 KB
-rw-r--r--
subprocess.cpython-38.opt-1.pyc
7.158 KB
-rw-r--r--
subprocess.cpython-38.opt-2.pyc
7.033 KB
-rw-r--r--
subprocess.cpython-38.pyc
7.188 KB
-rw-r--r--
tasks.cpython-38.opt-1.pyc
23.659 KB
-rw-r--r--
tasks.cpython-38.opt-2.pyc
16.251 KB
-rw-r--r--
tasks.cpython-38.pyc
23.714 KB
-rw-r--r--
transports.cpython-38.opt-1.pyc
11.947 KB
-rw-r--r--
transports.cpython-38.opt-2.pyc
6.673 KB
-rw-r--r--
transports.cpython-38.pyc
11.977 KB
-rw-r--r--
trsock.cpython-38.opt-1.pyc
8.286 KB
-rw-r--r--
trsock.cpython-38.opt-2.pyc
8.036 KB
-rw-r--r--
trsock.cpython-38.pyc
8.286 KB
-rw-r--r--
unix_events.cpython-38.opt-1.pyc
38.044 KB
-rw-r--r--
unix_events.cpython-38.opt-2.pyc
33.512 KB
-rw-r--r--
unix_events.cpython-38.pyc
38.416 KB
-rw-r--r--
windows_events.cpython-38.opt-1.pyc
23.978 KB
-rw-r--r--
windows_events.cpython-38.opt-2.pyc
22.896 KB
-rw-r--r--
windows_events.cpython-38.pyc
24.009 KB
-rw-r--r--
windows_utils.cpython-38.opt-1.pyc
4.286 KB
-rw-r--r--
windows_utils.cpython-38.opt-2.pyc
3.862 KB
-rw-r--r--
windows_utils.cpython-38.pyc
4.368 KB
-rw-r--r--