%PDF- %PDF-
Direktori : /lib/python3/dist-packages/pexpect/__pycache__/ |
Current File : //lib/python3/dist-packages/pexpect/__pycache__/fdpexpect.cpython-312.pyc |
� ��eg � �X � d Z ddlmZ ddlmZmZ ddlmZmZ ddl Z dgZ G d� de� Zy) a This is like :mod:`pexpect`, but it will work with any file descriptor that you pass it. You are responsible for opening and close the file descriptor. This allows you to use Pexpect with sockets and named pipes (FIFOs). .. note:: socket.fileno() does not give a readable file descriptor on windows. Use :mod:`pexpect.socket_pexpect` for cross-platform socket support PEXPECT LICENSE This license is approved by the OSI and FSF as GPL-compatible. http://opensource.org/licenses/isc-license.txt Copyright (c) 2012, Noah Spurrier <noah@noah.org> PERMISSION TO USE, COPY, MODIFY, AND/OR DISTRIBUTE THIS SOFTWARE FOR ANY PURPOSE WITH OR WITHOUT FEE IS HEREBY GRANTED, PROVIDED THAT THE ABOVE COPYRIGHT NOTICE AND THIS PERMISSION NOTICE APPEAR IN ALL COPIES. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. � )� SpawnBase)�ExceptionPexpect�TIMEOUT)�select_ignore_interrupts�poll_ignore_interrupts� N�fdspawnc �\ � � e Zd ZdZ dd�Zd� Zd� Zdd�Zd� Zd� Z d� Z d � Zd � fd � Z� xZ S )r z�This is like pexpect.spawn but allows you to supply your own open file descriptor. For example, you could use it to read through a file looking for patterns, or to control a modem or serial device. c � � t |� t d� k7 rt |d� r|j � }t |� t d� k7 rt d� � t j |� d| _ d| _ t j | ||||||�� || _ d| _ d| _ d|z | _ | | _ y# t $ r t d� �w xY w) z�This takes a file descriptor (an int) or an object that support the fileno() method (returning an int). All Python file-like objects support fileno(). r �filenozdThe fd argument is not an int. If this is a command string then maybe you want to use pexpect.spawn.z/The fd argument is not a valid file descriptor.N)�encoding�codec_errorsFz<file descriptor %d>)�type�hasattrr r �os�fstat�OSError�args�commandr �__init__�child_fd�own_fd�closed�name�use_poll) �self�fdr �timeout�maxread�searchwindowsize�logfiler r r s �3/usr/lib/python3/dist-packages/pexpect/fdpexpect.pyr zfdspawn.__init__( s� � � ��8�t�A�w��7�2�x�#8�����B���8�t�A�w��"� $J� K� K� V��H�H�R�L� �� �������4��'�3C�W�$,�<� I��� �������*�R�/�� � �� �� � V�"�#T�U�U� V�s �B= �=Cc � � | j dk( ry| j � t j | j � d| _ d| _ y)z�Close the file descriptor. Calling this method a second time does nothing, but if the file descriptor was closed elsewhere, :class:`OSError` will be raised. ���NT)r �flushr �closer �r s r"