$28 GRAYBYTE WORDPRESS FILE MANAGER $68

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 172.67.217.254 | ADMIN IP 216.73.216.180
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/opt/alt/python38/lib64/python3.8/asyncio/__pycache__/

HOME
Current File : /opt/alt/python38/lib64/python3.8/asyncio/__pycache__//transports.cpython-38.opt-1.pyc
U

i�f�(�@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�7/opt/alt/python38/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_waterNcs$t��|�||_d|_|��dS)NF)�superrr;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() failedrC)
r<r'r>rEZresume_writingrFrGrHr;rI)r
rKr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
r@4s�z*_FlowControlMixin._set_write_buffer_limitscCs|j||d�|��dS)N)r$r%)r@rLr#rrr
r&Dsz)_FlowControlMixin.set_write_buffer_limitscCst�dSr	rrrrr
r'Hsz'_FlowControlMixin.get_write_buffer_size)NN)NN)NN)
rrrrrrrLrMrNr@r&r'�
__classcell__rrrAr
r:�s

r:N)	r�__all__rrrrrrr:rrrr
�<module>s%F6


Current_dir [ NOT WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
26 Oct 2024 8.34 AM
root / linksafe
0755
__init__.cpython-38.opt-1.pyc
0.747 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
__init__.cpython-38.opt-2.pyc
0.692 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
__init__.cpython-38.pyc
0.747 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
__main__.cpython-38.opt-1.pyc
3.118 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
__main__.cpython-38.opt-2.pyc
3.118 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
__main__.cpython-38.pyc
3.118 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_events.cpython-38.opt-1.pyc
49.618 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_events.cpython-38.opt-2.pyc
40.848 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_events.cpython-38.pyc
49.839 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_futures.cpython-38.opt-1.pyc
1.868 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_futures.cpython-38.opt-2.pyc
1.62 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_futures.cpython-38.pyc
1.868 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_subprocess.cpython-38.opt-1.pyc
9.116 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_subprocess.cpython-38.opt-2.pyc
9.019 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_subprocess.cpython-38.pyc
9.21 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_tasks.cpython-38.opt-1.pyc
1.913 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_tasks.cpython-38.opt-2.pyc
1.913 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
base_tasks.cpython-38.pyc
1.913 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
constants.cpython-38.opt-1.pyc
0.582 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
constants.cpython-38.opt-2.pyc
0.582 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
constants.cpython-38.pyc
0.582 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
coroutines.cpython-38.opt-1.pyc
6.43 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
coroutines.cpython-38.opt-2.pyc
6.203 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
coroutines.cpython-38.pyc
6.513 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
events.cpython-38.opt-1.pyc
27.309 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
events.cpython-38.opt-2.pyc
18.469 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
events.cpython-38.pyc
27.414 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
exceptions.cpython-38.opt-1.pyc
2.504 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
exceptions.cpython-38.opt-2.pyc
1.875 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
exceptions.cpython-38.pyc
2.504 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
format_helpers.cpython-38.opt-1.pyc
2.292 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
format_helpers.cpython-38.opt-2.pyc
2.054 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
format_helpers.cpython-38.pyc
2.292 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
futures.cpython-38.opt-1.pyc
10.772 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
futures.cpython-38.opt-2.pyc
7.544 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
futures.cpython-38.pyc
10.945 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
locks.cpython-38.opt-1.pyc
15.999 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
locks.cpython-38.opt-2.pyc
9.552 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
locks.cpython-38.pyc
15.999 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
log.cpython-38.opt-1.pyc
0.235 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
log.cpython-38.opt-2.pyc
0.197 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
log.cpython-38.pyc
0.235 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
proactor_events.cpython-38.opt-1.pyc
23.322 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
proactor_events.cpython-38.opt-2.pyc
22.932 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
proactor_events.cpython-38.pyc
23.594 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
protocols.cpython-38.opt-1.pyc
8.427 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
protocols.cpython-38.opt-2.pyc
3.291 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
protocols.cpython-38.pyc
8.427 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
queues.cpython-38.opt-1.pyc
8.199 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
queues.cpython-38.opt-2.pyc
5.583 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
queues.cpython-38.pyc
8.199 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
runners.cpython-38.opt-1.pyc
1.916 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
runners.cpython-38.opt-2.pyc
1.25 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
runners.cpython-38.pyc
1.916 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
selector_events.cpython-38.opt-1.pyc
28.945 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
selector_events.cpython-38.opt-2.pyc
27.35 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
selector_events.cpython-38.pyc
29.004 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
sslproto.cpython-38.opt-1.pyc
20.931 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
sslproto.cpython-38.opt-2.pyc
14.287 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
sslproto.cpython-38.pyc
21.126 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
staggered.cpython-38.opt-1.pyc
3.867 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
staggered.cpython-38.opt-2.pyc
1.784 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
staggered.cpython-38.pyc
4.036 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
streams.cpython-38.opt-1.pyc
19.902 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
streams.cpython-38.opt-2.pyc
14.146 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
streams.cpython-38.pyc
20.171 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
subprocess.cpython-38.opt-1.pyc
7.171 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
subprocess.cpython-38.opt-2.pyc
7.046 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
subprocess.cpython-38.pyc
7.2 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
tasks.cpython-38.opt-1.pyc
23.672 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
tasks.cpython-38.opt-2.pyc
16.264 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
tasks.cpython-38.pyc
23.727 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
transports.cpython-38.opt-1.pyc
11.96 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
transports.cpython-38.opt-2.pyc
6.686 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
transports.cpython-38.pyc
11.989 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
trsock.cpython-38.opt-1.pyc
8.299 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
trsock.cpython-38.opt-2.pyc
8.049 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
trsock.cpython-38.pyc
8.299 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
unix_events.cpython-38.opt-1.pyc
38.057 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
unix_events.cpython-38.opt-2.pyc
33.524 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
unix_events.cpython-38.pyc
38.429 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
windows_events.cpython-38.opt-1.pyc
24.001 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
windows_events.cpython-38.opt-2.pyc
22.92 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
windows_events.cpython-38.pyc
24.032 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
windows_utils.cpython-38.opt-1.pyc
4.299 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
windows_utils.cpython-38.opt-2.pyc
3.875 KB
23 Sep 2024 11.26 AM
root / linksafe
0644
windows_utils.cpython-38.pyc
4.381 KB
23 Sep 2024 11.26 AM
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF