Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
§ àÀ fâ)ãóÒ—dZdZGd„d¦«ZGd„de¦«ZGd„de¦«ZGd„d ee¦«ZGd „d e¦«ZGd „d e¦«ZGd„de¦«ZdS)zAbstract Transport class.)Ú BaseTransportÚ ReadTransportÚWriteTransportÚ TransportÚDatagramTransportÚSubprocessTransportcó>—eZdZdZdZd d„Zd d„Zd„Zd„Zd„Z d „Z dS) rzBase class for transports.©Ú_extraNcó—|€i}||_dS©Nr )ÚselfÚextras ú9/opt/alt/python311/lib64/python3.11/asyncio/transports.pyÚ__init__zBaseTransport.__init__s€Ø ˆ=؈E؈Œ ˆ ˆ ócó8—|j ||¦«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„ZdS)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.sL€€€€€Ø-Ð-à€Ið"ð"ð"ð"ð"ð"ð"ð"ð"ð"ð"rrcóH—eZdZdZdZd d„Zd„Zd„Zd„Zd„Z d „Z d „Z d „Z dS) 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óZ—d |¦«}| |¦«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. 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*rrrrHsœ€€€€€Ø.Ð.à€Ið"ð"ð"ð"ð*"ð"ð"ð"ð"ð"ð "ð"ð"ðððð"ð"ð"ð"ð"ð"ð"ð"ð"ð"ð"rrcó—eZdZdZdZdS)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€€€€€ððð(€I€I€Irrcó$—eZdZdZdZdd„Zd„ZdS)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¬sB€€€€€Ø2Ð2à€Ið"ð"ð"ð"ð"ð"ð"ð"ð"rrcó6—eZdZdZd„Zd„Zd„Zd„Zd„Zd„Z dS) 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Åss€€€€€à€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_waterNcóŽ•—t¦« |¦«||_d|_| ¦«dS)NF)ÚsuperrrdreÚ_set_write_buffer_limits)r rÚloopÚ __class__s €rrz_FlowControlMixin.__init__sBø€Ý ‰Œ×Ò˜ÑÔÐàˆŒ Ø %ˆÔØ ×%Ò%Ñ'Ô'Ð'Ð'Ð'rcó6—| ¦«}||jkrdS|jspd|_ |j ¦«dS#t t f$r‚t$r/}|j  d|||jdœ¦«Yd}~dSd}~wwxYwdS)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Ô#Ò #Ð #Ø ˆFØÔ$ð Ø$(ˆDÔ !ð Ø”×,Ò,Ñ.Ô.Ð.Ð.Ð.øÝÕ 1Ð2ð ð ð ØÝ ð ð ð Ø” ×1Ò1Ø@Ø!$Ø!%Ø $¤ð 3ð3ñôðððððððøøøøð øøøð ð s±A Á BÁ'$BÂBcó2—|jr�| ¦«|jkrrd|_ |j ¦«dS#t t f$r‚t$r/}|j  d|||jdœ¦«Yd}~dSd}~wwxYwdSdS)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ð3ñôðððððððøøøøð øøøð ð Ø?Ð?s­AÁBÁ#$B  Bcó—|j|jfSr )rgrfrs rr<z)_FlowControlMixin.get_write_buffer_limits7s€Ø” Ô!1Ð2Ð2rcó’—|€ |€d}nd|z}|€|dz}||cxkrdksntd|›d|›d�¦«‚||_||_dS)Niéézhigh (z) must be >= low (z) must be >= 0)Ú ValueErrorrfrgr5s rrjz*_FlowControlMixin._set_write_buffer_limits:s‰€Ø ˆ<؈{Ø ��à˜3‘w�Ø ˆ;ؘ!‘)ˆCà�sÐÐÒИaÒÐÐÐÝØH˜ÐHÐH°3ÐHÐHÐHñJôJð Jð ˆÔ؈Œˆˆrcó\—| ||¬¦«| ¦«dS)N)r6r7)rjrzr5s rr8z)_FlowControlMixin.set_write_buffer_limitsJs3€Ø ×%Ò%¨4°SÐ%Ñ9Ô9Ð9Ø ×"Ò"Ñ$Ô$Ð$Ð$Ð$rcó—t‚r rrs rr:z'_FlowControlMixin.get_write_buffer_sizeNs€Ý!Ð!rrL) r%r&r'r(r)rrzr}r<rjr8r:Ú __classcell__)rls@rrcrcûs³ø€€€€€ððð K€Ið(ð(ð(ð(ð(ð(ðððð$ððð 3ð3ð3ððððð %ð%ð%ð%ð"ð"ð"ð"ð"ð"ð"rrcN) r(Ú__all__rrrrrrrcr*rrúr‡sWðØÐð €ð ""ð""ð""ð""ð""ñ""ô""ð""ðJ"ð"ð"ð"ð"�Mñ"ô"ð"ð4I"ðI"ðI"ðI"ðI"�]ñI"ôI"ðI"ðXðððð� ˜~ñôðð0"ð"ð"ð"ð"˜ ñ"ô"ð"ð23"ð3"ð3"ð3"ð3"˜-ñ3"ô3"ð3"ðlT"ðT"ðT"ðT"ðT"˜ ñT"ôT"ðT"ðT"ðT"r